/* roulang page: index */
:root{
      --wine:#3A1428;
      --wine-2:#2B1022;
      --rose:#B23A5B;
      --rose-dark:#9E2F4E;
      --copper:#C98B4F;
      --cream:#F7F0EA;
      --cream-2:#FFF9F4;
      --charcoal:#171116;
      --ink:#2A1E25;
      --muted:#7D6873;
      --light:#F7EDE7;
      --line:rgba(178,58,91,.18);
      --line-copper:rgba(201,139,79,.28);
      --shadow-soft:0 18px 45px rgba(58,20,40,.08);
      --shadow-deep:0 24px 60px rgba(0,0,0,.28);
      --radius-xl:24px;
      --radius-lg:18px;
      --radius-md:14px;
      --container:1180px;
      --transition:all .25s 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% 6%, rgba(201,139,79,.10), transparent 28%),
        linear-gradient(180deg,#fff 0%,var(--cream) 52%,#fff 100%);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(178,58,91,.22);color:var(--wine)}
    .container{max-width:var(--container)}
    .section{padding:88px 0}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border:1px solid var(--line-copper);
      border-radius:999px;
      color:var(--copper);
      background:rgba(255,249,244,.08);
      font-size:14px;
      font-weight:600;
      letter-spacing:.02em;
    }
    .eyebrow.dark{
      color:var(--rose);
      background:rgba(178,58,91,.08);
      border-color:rgba(178,58,91,.16);
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:currentColor;
      box-shadow:0 0 0 5px rgba(201,139,79,.12);
    }
    h1,h2,h3,h4{letter-spacing:-.03em}
    h1{
      font-size:clamp(34px,5vw,56px);
      line-height:1.15;
      font-weight:760;
      margin:22px 0 20px;
    }
    h2{
      font-size:clamp(30px,3.6vw,38px);
      line-height:1.25;
      font-weight:760;
      margin:0 0 16px;
    }
    h3{
      font-size:clamp(21px,2.2vw,25px);
      line-height:1.35;
      font-weight:700;
      margin-bottom:12px;
    }
    p{margin-bottom:0}
    .lead-text{
      font-size:17px;
      color:rgba(247,237,231,.82);
      max-width:680px;
    }
    .section-desc{
      color:var(--muted);
      font-size:17px;
      max-width:720px;
    }

    .top-strip{
      background:linear-gradient(90deg,var(--charcoal),var(--wine));
      color:rgba(247,237,231,.86);
      font-size:13px;
      border-bottom:1px solid rgba(201,139,79,.18);
    }
    .top-strip-inner{
      min-height:40px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .top-strip .strip-meta{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .strip-dot{
      width:4px;
      height:4px;
      border-radius:50%;
      background:var(--copper);
      opacity:.85;
    }
    .strip-actions{
      display:flex;
      gap:14px;
      white-space:nowrap;
    }
    .strip-actions a{
      color:var(--light);
      font-weight:600;
    }
    .strip-actions a:hover{color:var(--copper)}

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(247,240,234,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(58,20,40,.08);
      box-shadow:0 10px 30px rgba(58,20,40,.05);
    }
    .navbar{padding:16px 0}
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:250px;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:
        linear-gradient(135deg,var(--rose),var(--wine)),
        repeating-linear-gradient(90deg,transparent 0 7px,rgba(255,255,255,.2) 7px 9px);
      position:relative;
      box-shadow:0 14px 30px rgba(178,58,91,.24);
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:12px;
      border:1px solid rgba(255,249,244,.7);
      border-radius:50%;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.25;
    }
    .brand-text strong{
      font-size:16px;
      color:var(--wine);
      font-weight:800;
      letter-spacing:-.02em;
    }
    .brand-text span{
      font-size:12px;
      color:var(--muted);
    }
    .navbar-toggler{
      border:1px solid rgba(178,58,91,.22);
      border-radius:14px;
      padding:9px 11px;
      box-shadow:none!important;
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(201,139,79,.28)!important}
    .navbar-toggler-icon{
      background-image:none;
      width:22px;
      height:16px;
      position:relative;
      border-top:2px solid var(--wine);
      border-bottom:2px solid var(--wine);
    }
    .navbar-toggler-icon::after{
      content:"";
      position:absolute;
      left:0;
      top:5px;
      width:22px;
      border-top:2px solid var(--wine);
    }
    .navbar-nav{
      gap:4px;
      align-items:center;
    }
    .nav-link{
      color:var(--ink);
      font-size:15px;
      font-weight:650;
      padding:10px 14px!important;
      border-radius:999px;
      position:relative;
    }
    .nav-link:hover,
    .nav-link.active{
      color:var(--rose);
      background:rgba(178,58,91,.08);
    }
    .nav-link.active::after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:5px;
      height:2px;
      border-radius:999px;
      background:var(--copper);
    }

    .btn{
      border:0;
      font-weight:700;
      border-radius:999px;
      padding:12px 22px;
      transition:var(--transition);
      line-height:1.3;
    }
    .btn-primary-custom{
      background:var(--rose);
      color:var(--light);
      box-shadow:0 15px 32px rgba(178,58,91,.22);
    }
    .btn-primary-custom:hover,
    .btn-primary-custom:active{
      background:var(--rose-dark)!important;
      color:#fff!important;
      transform:translateY(-2px);
      box-shadow:0 20px 42px rgba(178,58,91,.30);
    }
    .btn-outline-custom{
      color:var(--copper);
      border:1px solid var(--line-copper);
      background:transparent;
    }
    .btn-outline-custom:hover,
    .btn-outline-custom:active{
      color:var(--wine)!important;
      background:var(--copper)!important;
      border-color:var(--copper)!important;
      transform:translateY(-2px);
    }
    .btn:focus-visible,
    .form-control:focus,
    .form-select:focus{
      box-shadow:0 0 0 4px rgba(201,139,79,.35)!important;
      border-color:var(--copper)!important;
      outline:0;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--rose);
      font-weight:750;
    }
    .text-link span{transition:var(--transition)}
    .text-link:hover{color:var(--rose-dark)}
    .text-link:hover span{transform:translateX(4px)}

    .hero{
      position:relative;
      color:var(--light);
      padding:88px 0 74px;
      background:
        radial-gradient(circle at 80% 20%, rgba(201,139,79,.24), transparent 30%),
        radial-gradient(circle at 18% 12%, rgba(178,58,91,.30), transparent 28%),
        linear-gradient(135deg,var(--wine) 0%,var(--wine-2) 42%,var(--charcoal) 100%);
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(90deg,rgba(255,255,255,.035) 0 1px,transparent 1px 42px),
        repeating-linear-gradient(0deg,rgba(255,255,255,.025) 0 1px,transparent 1px 42px);
      opacity:.55;
      pointer-events:none;
    }
    .hero::after{
      content:"";
      position:absolute;
      width:520px;
      height:520px;
      right:-210px;
      bottom:-240px;
      border-radius:50%;
      border:1px solid rgba(201,139,79,.22);
      box-shadow:inset 0 0 0 24px rgba(201,139,79,.04);
      pointer-events:none;
    }
    .hero .container{position:relative;z-index:2}
    .hero-copy{
      padding:22px 0;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .hero-tag{
      padding:8px 12px;
      border-radius:999px;
      color:rgba(247,237,231,.88);
      border:1px solid rgba(201,139,79,.22);
      background:rgba(255,249,244,.06);
      font-size:13px;
      font-weight:650;
    }
    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:34px;
    }
    .operator-panel{
      background:linear-gradient(180deg,rgba(36,24,34,.96),rgba(23,17,22,.96));
      border:1px solid rgba(201,139,79,.25);
      border-radius:30px;
      padding:24px;
      box-shadow:var(--shadow-deep);
      position:relative;
      overflow:hidden;
    }
    .operator-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 20% 0%,rgba(178,58,91,.22),transparent 34%);
      pointer-events:none;
    }
    .panel-top,
    .metric-grid,
    .channel-list,
    .funnel-box{position:relative;z-index:2}
    .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding-bottom:18px;
      border-bottom:1px solid rgba(201,139,79,.18);
      margin-bottom:20px;
    }
    .panel-title{
      font-weight:760;
      color:#fff;
    }
    .panel-status{
      color:var(--copper);
      font-size:13px;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(201,139,79,.10);
      border:1px solid rgba(201,139,79,.25);
    }
    .metric-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-bottom:18px;
    }
    .metric-card{
      min-height:112px;
      padding:18px;
      border-radius:20px;
      background:rgba(255,249,244,.06);
      border:1px solid rgba(255,255,255,.08);
    }
    .metric-card b{
      color:var(--copper);
      display:block;
      font-size:30px;
      line-height:1;
      margin-bottom:10px;
    }
    .metric-card span{
      color:rgba(247,237,231,.72);
      font-size:13px;
    }
    .trend{
      height:74px;
      display:flex;
      align-items:end;
      gap:8px;
      padding:12px 0 2px;
    }
    .trend i{
      display:block;
      flex:1;
      min-width:8px;
      border-radius:999px 999px 6px 6px;
      background:linear-gradient(180deg,var(--copper),var(--rose));
      opacity:.9;
    }
    .channel-list{
      display:grid;
      gap:10px;
    }
    .channel-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,249,244,.05);
      border:1px solid rgba(255,255,255,.08);
      color:rgba(247,237,231,.86);
      font-size:14px;
    }
    .channel-item em{
      font-style:normal;
      color:var(--copper);
      font-weight:700;
    }

    .pain-strip{
      margin-top:-28px;
      position:relative;
      z-index:5;
    }
    .pain-card{
      background:var(--cream-2);
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);
      padding:18px;
    }
    .pain-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
    }
    .pain-item{
      padding:18px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(58,20,40,.06);
      min-height:104px;
    }
    .pain-item small{
      display:block;
      color:var(--rose);
      font-weight:800;
      margin-bottom:8px;
    }
    .pain-item strong{
      display:block;
      color:var(--wine);
      margin-bottom:4px;
      font-size:17px;
    }
    .pain-item span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }

    .mag-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:18px;
      margin-top:34px;
    }
    .feature-card{
      position:relative;
      border-radius:var(--radius-xl);
      padding:30px;
      background:var(--cream-2);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      min-height:220px;
      transition:var(--transition);
    }
    .feature-card:hover,
    .case-card:hover,
    .plan-card:hover,
    .category-card:hover{
      transform:translateY(-4px);
      border-color:var(--line-copper);
      box-shadow:0 24px 60px rgba(58,20,40,.12);
    }
    .feature-card.wide{grid-column:span 6;background:linear-gradient(145deg,var(--wine),var(--charcoal));color:var(--light)}
    .feature-card.mid{grid-column:span 3}
    .feature-card.long{grid-column:span 4}
    .feature-card.band{grid-column:span 8;min-height:170px}
    .feature-num{
      color:var(--copper);
      font-size:13px;
      font-weight:800;
      letter-spacing:.08em;
      margin-bottom:16px;
    }
    .feature-card p{color:var(--muted)}
    .feature-card.wide p{color:rgba(247,237,231,.74)}
    .feature-icon{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      color:#fff;
      background:var(--rose);
      margin-bottom:18px;
      box-shadow:0 14px 26px rgba(178,58,91,.24);
    }
    .feature-card::after{
      content:"";
      position:absolute;
      right:-38px;
      bottom:-38px;
      width:130px;
      height:130px;
      border-radius:50%;
      border:1px solid rgba(201,139,79,.22);
    }

    .category-entry{
      background:#fff;
      border-top:1px solid rgba(58,20,40,.06);
      border-bottom:1px solid rgba(58,20,40,.06);
    }
    .category-card{
      display:block;
      height:100%;
      padding:28px;
      border-radius:var(--radius-xl);
      background:var(--cream-2);
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }
    .category-card .route{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--copper);
      font-weight:800;
      font-size:13px;
      margin-bottom:18px;
    }
    .category-card .route::before{
      content:"";
      width:34px;
      height:2px;
      border-radius:999px;
      background:var(--copper);
    }
    .category-card p{color:var(--muted);margin-bottom:18px}
    .category-card .arrow{
      color:var(--rose);
      font-weight:800;
    }

    .process-wrap{
      position:relative;
      background:
        linear-gradient(135deg,#fff 0%,var(--cream-2) 100%);
      border-radius:32px;
      padding:34px;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .process-line{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:16px;
      margin-top:28px;
    }
    .step-card{
      position:relative;
      padding:22px;
      border-radius:20px;
      background:#fff;
      border:1px solid rgba(58,20,40,.08);
      min-height:190px;
    }
    .step-index{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:#fff;
      background:var(--rose);
      font-weight:800;
      margin-bottom:16px;
    }
    .step-card p{color:var(--muted);font-size:14px;line-height:1.7}

    .dark-section{
      color:var(--light);
      background:
        radial-gradient(circle at 80% 0%,rgba(201,139,79,.18),transparent 26%),
        linear-gradient(135deg,var(--charcoal),var(--wine-2));
    }
    .dark-section .section-desc{color:rgba(247,237,231,.72)}
    .case-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr 1.05fr;
      gap:18px;
      margin-top:34px;
      align-items:start;
    }
    .case-col{
      display:grid;
      gap:18px;
    }
    .case-card{
      padding:26px;
      border-radius:var(--radius-xl);
      background:rgba(255,249,244,.06);
      border:1px solid rgba(201,139,79,.18);
      transition:var(--transition);
    }
    .case-card.tall{min-height:330px}
    .case-card.compact{min-height:230px}
    .case-card h3{color:#fff}
    .case-card p{color:rgba(247,237,231,.72);font-size:15px}
    .case-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:20px;
    }
    .case-tags span{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(201,139,79,.10);
      color:var(--copper);
      border:1px solid rgba(201,139,79,.20);
      font-size:12px;
      font-weight:700;
    }

    .plan-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:34px;
    }
    .plan-card{
      position:relative;
      padding:30px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }
    .plan-card.recommend{
      background:linear-gradient(180deg,var(--cream-2),#fff);
      border-color:rgba(178,58,91,.30);
    }
    .recommend-badge{
      position:absolute;
      top:18px;
      right:18px;
      padding:6px 12px;
      border-radius:999px;
      color:#fff;
      background:var(--rose);
      font-size:12px;
      font-weight:800;
    }
    .plan-price{
      color:var(--copper);
      font-size:32px;
      font-weight:800;
      line-height:1;
      margin:18px 0;
    }
    .plan-list{
      list-style:none;
      padding:0;
      margin:22px 0 0;
      display:grid;
      gap:12px;
    }
    .plan-list li{
      position:relative;
      padding-left:26px;
      color:var(--muted);
      font-size:15px;
    }
    .plan-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:9px;
      width:12px;
      height:12px;
      border-radius:50%;
      background:rgba(178,58,91,.12);
      border:3px solid var(--rose);
    }

    .faq-wrap{
      margin-top:34px;
    }
    .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--line)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:var(--cream-2);
      box-shadow:0 10px 24px rgba(58,20,40,.05);
    }
    .accordion-button{
      background:var(--cream-2)!important;
      color:var(--wine)!important;
      font-weight:800;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      border-left:5px solid var(--rose);
      color:var(--rose)!important;
    }
    .accordion-button::after{
      filter:none;
      opacity:.55;
    }
    .accordion-body{
      color:var(--muted);
      padding:0 24px 22px 27px;
      background:var(--cream-2);
    }

    .contact-zone{
      background:
        radial-gradient(circle at 6% 18%,rgba(178,58,91,.12),transparent 26%),
        linear-gradient(180deg,#fff,var(--cream));
    }
    .contact-info{
      padding:34px;
      border-radius:30px;
      background:linear-gradient(135deg,var(--wine),var(--charcoal));
      color:var(--light);
      height:100%;
      box-shadow:var(--shadow-deep);
      border:1px solid rgba(201,139,79,.20);
    }
    .contact-info p{color:rgba(247,237,231,.75)}
    .check-list{
      list-style:none;
      padding:0;
      margin:26px 0 0;
      display:grid;
      gap:14px;
    }
    .check-list li{
      display:flex;
      gap:12px;
      color:rgba(247,237,231,.82);
    }
    .check-list li::before{
      content:"";
      width:18px;
      height:18px;
      flex:0 0 18px;
      margin-top:5px;
      border-radius:6px;
      background:linear-gradient(135deg,var(--copper),var(--rose));
    }
    .form-card{
      padding:30px;
      border-radius:30px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
    }
    .form-label{
      font-weight:750;
      color:var(--wine);
      margin-bottom:8px;
    }
    .form-control,
    .form-select{
      border-radius:16px;
      border:1px solid rgba(58,20,40,.12);
      padding:13px 15px;
      background:var(--cream-2);
      color:var(--ink);
    }
    .form-control::placeholder{color:rgba(125,104,115,.65)}
    .form-hint{
      color:var(--copper);
      font-size:13px;
      margin-top:12px;
    }

    .site-footer{
      color:rgba(247,237,231,.76);
      background:linear-gradient(135deg,var(--charcoal),var(--wine));
      padding:62px 0 28px;
      border-top:1px solid rgba(201,139,79,.18);
    }
    .footer-brand strong{
      display:block;
      color:#fff;
      font-size:20px;
      line-height:1.35;
      margin-bottom:12px;
    }
    .footer-brand p{
      max-width:440px;
      color:rgba(247,237,231,.70);
      font-size:14px;
    }
    .footer-title{
      color:#fff;
      font-weight:800;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a:hover{color:var(--copper);transform:translateX(3px)}
    .footer-bottom{
      margin-top:40px;
      padding-top:22px;
      border-top:1px solid rgba(201,139,79,.16);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:13px;
      color:rgba(247,237,231,.62);
    }

    @media (max-width: 1199.98px){
      .brand-logo{min-width:auto}
      .nav-link{padding:10px 10px!important}
      .feature-card.wide{grid-column:span 7}
      .feature-card.mid{grid-column:span 5}
      .feature-card.long{grid-column:span 4}
      .feature-card.band{grid-column:span 8}
      .process-line{grid-template-columns:repeat(3,1fr)}
    }
    @media (max-width: 991.98px){
      .section{padding:68px 0}
      .top-strip-inner{min-height:38px}
      .top-strip .hide-tablet{display:none}
      .navbar-collapse{
        margin-top:16px;
        padding:14px;
        border-radius:22px;
        background:var(--wine);
        border:1px solid rgba(201,139,79,.22);
        box-shadow:var(--shadow-deep);
      }
      .navbar-nav{align-items:stretch;gap:0}
      .nav-link{
        color:rgba(247,237,231,.86)!important;
        padding:13px 14px!important;
        border-radius:14px;
        border-bottom:1px solid rgba(201,139,79,.12);
      }
      .nav-link:hover,
      .nav-link.active{
        color:#fff!important;
        background:rgba(201,139,79,.12);
      }
      .nav-link.active::after{display:none}
      .navbar .btn{margin-top:12px;width:100%}
      .hero{padding:66px 0}
      .operator-panel{margin-top:26px}
      .pain-grid{grid-template-columns:repeat(2,1fr)}
      .mag-grid{grid-template-columns:repeat(6,1fr)}
      .feature-card.wide,
      .feature-card.mid,
      .feature-card.long,
      .feature-card.band{grid-column:span 6}
      .case-grid{grid-template-columns:1fr 1fr}
      .case-col:nth-child(3){grid-column:span 2;grid-template-columns:1fr 1fr}
      .plan-grid{grid-template-columns:1fr}
    }
    @media (max-width: 767.98px){
      .section{padding:56px 0}
      .section-tight{padding:44px 0}
      .top-strip .hide-mobile{display:none}
      .strip-actions{gap:10px}
      .brand-text strong{font-size:14px;max-width:220px}
      .hero-actions .btn{width:100%}
      .metric-grid{grid-template-columns:1fr}
      .pain-grid{grid-template-columns:1fr}
      .process-wrap{padding:24px}
      .process-line{grid-template-columns:1fr}
      .case-grid,
      .case-col,
      .case-col:nth-child(3){grid-template-columns:1fr;grid-column:auto}
      .case-card.tall,
      .case-card.compact{min-height:auto}
      .contact-info,
      .form-card{padding:24px;border-radius:24px}
      .footer-bottom{display:block}
      .footer-bottom span{display:block;margin-top:8px}
    }
    @media (max-width: 520px){
      .container{padding-left:18px;padding-right:18px}
      .top-strip{font-size:12px}
      .top-strip-inner{justify-content:center}
      .strip-meta{justify-content:center}
      .strip-actions{display:none}
      .navbar{padding:13px 0}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .brand-text strong{font-size:13px;max-width:190px}
      .hero{padding:54px 0}
      .feature-card,
      .category-card,
      .plan-card{padding:24px}
      .pain-card{padding:12px}
      .hero-tag{font-size:12px}
    }

/* roulang page: category1 */
:root{
      --color-primary:#3A1428;
      --color-primary-deep:#2B1022;
      --color-accent:#B23A5B;
      --color-accent-dark:#9E2F4E;
      --color-copper:#C98B4F;
      --color-bg:#F7F0EA;
      --color-bg-soft:#FFF9F4;
      --color-dark:#171116;
      --color-card:#FFFFFF;
      --color-card-dark:#241822;
      --color-text:#2A1E25;
      --color-muted:#7D6873;
      --color-light:#F7EDE7;
      --border-rose:rgba(178,58,91,.18);
      --border-copper:rgba(201,139,79,.25);
      --shadow-soft:0 18px 45px rgba(58,20,40,.08);
      --shadow-strong:0 24px 60px rgba(0,0,0,.28);
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1180px;
      --transition:all .25s 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 10% 0%, rgba(201,139,79,.12), transparent 28%),
        linear-gradient(180deg,#F7F0EA 0%,#FFF9F4 42%,#F7F0EA 100%);
      font-size:16px;
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(178,58,91,.18);color:var(--color-primary)}
    .container{max-width:var(--container)}
    .section{padding:86px 0}
    .section-sm{padding:64px 0}
    .section-title{margin-bottom:34px}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border:1px solid var(--border-copper);
      border-radius:999px;
      color:var(--color-accent);
      background:rgba(255,249,244,.76);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--color-copper);
      box-shadow:0 0 0 5px rgba(201,139,79,.14);
    }
    h1,h2,h3,h4{color:var(--color-text);letter-spacing:-.03em}
    h1{font-size:48px;line-height:1.14;font-weight:750;margin:18px 0 20px}
    h2{font-size:34px;line-height:1.25;font-weight:750;margin:0 0 14px}
    h3{font-size:23px;line-height:1.35;font-weight:700;margin:0 0 12px}
    p{margin:0 0 14px}
    .lead-text{font-size:18px;color:rgba(247,237,231,.82);line-height:1.85}
    .muted{color:var(--color-muted)}
    .top-strip{
      background:linear-gradient(90deg,var(--color-dark),var(--color-primary));
      color:rgba(247,237,231,.78);
      font-size:13px;
      border-bottom:1px solid rgba(201,139,79,.18);
    }
    .top-strip .container{
      min-height:40px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .top-strip strong{color:var(--color-light);font-weight:650}
    .top-strip-actions{
      display:flex;
      align-items:center;
      gap:14px;
      white-space:nowrap;
    }
    .top-strip-actions a{color:var(--color-copper);font-weight:650}
    .top-strip-actions a:hover{color:#F0B776}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(247,240,234,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(58,20,40,.08);
      box-shadow:0 10px 30px rgba(58,20,40,.05);
    }
    .navbar{padding:16px 0}
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      background:
        linear-gradient(135deg,var(--color-accent),var(--color-copper)),
        var(--color-primary);
      position:relative;
      box-shadow:0 14px 30px rgba(178,58,91,.22);
      overflow:hidden;
    }
    .brand-mark::before,.brand-mark::after{
      content:"";
      position:absolute;
      inset:9px;
      border:1px solid rgba(247,237,231,.62);
      border-left:0;
      border-right:0;
      transform:skewY(-10deg);
    }
    .brand-mark::after{
      inset:15px 9px;
      border-color:rgba(247,237,231,.36);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.25}
    .brand-text strong{
      color:var(--color-primary);
      font-size:16px;
      font-weight:800;
      max-width:260px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text span{font-size:12px;color:var(--color-muted);font-weight:650}
    .navbar-nav{gap:6px;align-items:center}
    .nav-link{
      position:relative;
      padding:10px 14px!important;
      color:#513544;
      font-weight:650;
      border-radius:999px;
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:6px;
      height:2px;
      border-radius:999px;
      background:var(--color-copper);
      transform:scaleX(0);
      transform-origin:center;
      transition:var(--transition);
    }
    .nav-link:hover,.nav-link.active{
      color:var(--color-accent);
      background:rgba(178,58,91,.07);
    }
    .nav-link:hover::after,.nav-link.active::after{transform:scaleX(1)}
    .navbar-toggler{
      border:1px solid var(--border-copper);
      border-radius:14px;
      padding:9px 11px;
      box-shadow:none!important;
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(201,139,79,.24)!important}
    .navbar-toggler-icon{
      background-image:none;
      width:24px;
      height:18px;
      position:relative;
      border-top:2px solid var(--color-primary);
      border-bottom:2px solid var(--color-primary);
    }
    .navbar-toggler-icon::before{
      content:"";
      position:absolute;
      left:0;
      top:7px;
      width:24px;
      height:2px;
      background:var(--color-primary);
    }
    .btn{
      border:0;
      font-weight:700;
      border-radius:999px;
      padding:12px 22px;
      transition:var(--transition);
      line-height:1.35;
    }
    .btn-primary-custom{
      background:var(--color-accent);
      color:var(--color-light)!important;
      box-shadow:0 14px 30px rgba(178,58,91,.24);
    }
    .btn-primary-custom:hover{
      background:var(--color-accent-dark);
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(178,58,91,.30);
    }
    .btn-secondary-custom{
      color:var(--color-copper)!important;
      border:1px solid var(--color-copper);
      background:transparent;
    }
    .btn-secondary-custom:hover{
      color:var(--color-primary)!important;
      background:var(--color-copper);
      transform:translateY(-2px);
    }
    .btn:focus,.form-control:focus,.form-select:focus{
      outline:0;
      box-shadow:0 0 0 4px rgba(201,139,79,.35)!important;
    }
    .category-hero{
      position:relative;
      padding:78px 0 72px;
      color:var(--color-light);
      background:
        linear-gradient(135deg,rgba(43,16,34,.96),rgba(23,17,22,.98)),
        radial-gradient(circle at 18% 20%,rgba(178,58,91,.34),transparent 34%);
      overflow:hidden;
    }
    .category-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(247,237,231,.035) 1px,transparent 1px),
        linear-gradient(180deg,rgba(247,237,231,.035) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(90deg,rgba(0,0,0,.72),transparent);
    }
    .category-hero::after{
      content:"";
      position:absolute;
      width:380px;
      height:380px;
      right:-120px;
      top:-140px;
      border:1px solid rgba(201,139,79,.35);
      border-radius:50%;
      box-shadow:inset 0 0 0 42px rgba(201,139,79,.04);
    }
    .category-hero .container{position:relative;z-index:2}
    .category-hero h1{color:var(--color-light);max-width:820px}
    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-meta span{
      padding:9px 14px;
      border-radius:999px;
      color:rgba(247,237,231,.84);
      background:rgba(255,255,255,.07);
      border:1px solid rgba(201,139,79,.22);
      font-size:14px;
      font-weight:650;
    }
    .hero-panel{
      height:100%;
      min-height:260px;
      border-radius:var(--radius-lg);
      padding:26px;
      background:
        linear-gradient(180deg,rgba(255,249,244,.08),rgba(255,249,244,.025));
      border:1px solid rgba(201,139,79,.22);
      box-shadow:var(--shadow-strong);
    }
    .map-line{
      position:relative;
      padding-left:28px;
      margin:0;
      list-style:none;
    }
    .map-line::before{
      content:"";
      position:absolute;
      left:8px;
      top:8px;
      bottom:8px;
      width:2px;
      background:linear-gradient(var(--color-copper),rgba(178,58,91,.25));
    }
    .map-line li{
      position:relative;
      padding:0 0 22px;
      color:rgba(247,237,231,.82);
      font-size:15px;
    }
    .map-line li::before{
      content:"";
      position:absolute;
      left:-25px;
      top:6px;
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--color-copper);
      box-shadow:0 0 0 6px rgba(201,139,79,.13);
    }
    .map-line strong{display:block;color:var(--color-light);font-size:17px;margin-bottom:4px}
    .layout-shell{
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      gap:34px;
      align-items:start;
    }
    .side-toc{
      position:sticky;
      top:104px;
      padding:22px;
      border-radius:var(--radius-lg);
      background:rgba(255,249,244,.86);
      border:1px solid var(--border-rose);
      box-shadow:var(--shadow-soft);
    }
    .side-toc .toc-title{
      color:var(--color-primary);
      font-weight:800;
      margin-bottom:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .side-toc .toc-title::after{
      content:"";
      width:42px;
      height:1px;
      background:var(--color-copper);
    }
    .toc-links{display:flex;flex-direction:column;gap:8px}
    .toc-links a{
      padding:11px 13px;
      border-radius:14px;
      color:#5B4350;
      font-size:15px;
      font-weight:650;
      border:1px solid transparent;
    }
    .toc-links a:hover,.toc-links a.active{
      color:var(--color-accent);
      background:rgba(178,58,91,.08);
      border-color:rgba(178,58,91,.16);
      transform:translateX(3px);
    }
    .content-stack{display:flex;flex-direction:column;gap:24px}
    .long-card{
      position:relative;
      padding:32px;
      border-radius:var(--radius-lg);
      background:var(--color-card);
      border:1px solid var(--border-rose);
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
      overflow:hidden;
    }
    .long-card:hover{
      transform:translateY(-4px);
      border-color:var(--border-copper);
      box-shadow:0 24px 55px rgba(58,20,40,.11);
    }
    .long-card.deep{
      color:var(--color-light);
      background:
        linear-gradient(145deg,var(--color-primary),var(--color-dark));
      border-color:rgba(201,139,79,.28);
      box-shadow:var(--shadow-strong);
    }
    .long-card.deep h2,.long-card.deep h3{color:var(--color-light)}
    .long-card.deep .muted{color:rgba(247,237,231,.72)}
    .card-index{
      display:inline-flex;
      width:42px;
      height:42px;
      align-items:center;
      justify-content:center;
      border-radius:15px;
      background:rgba(178,58,91,.10);
      color:var(--color-accent);
      font-weight:800;
      margin-bottom:16px;
    }
    .deep .card-index{
      background:rgba(201,139,79,.16);
      color:var(--color-copper);
    }
    .tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
    .tag{
      display:inline-flex;
      align-items:center;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(201,139,79,.10);
      border:1px solid rgba(201,139,79,.22);
      color:#7A4D26;
      font-size:13px;
      font-weight:700;
    }
    .deep .tag{color:#F0C292;background:rgba(201,139,79,.12)}
    .split-list{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      margin-top:20px;
    }
    .split-list .item{
      padding:17px;
      border-radius:18px;
      background:rgba(247,240,234,.72);
      border:1px solid rgba(178,58,91,.12);
    }
    .split-list strong{display:block;color:var(--color-primary);margin-bottom:5px}
    .process-section{
      background:
        linear-gradient(180deg,rgba(36,24,34,.96),rgba(23,17,22,.98));
      color:var(--color-light);
      position:relative;
      overflow:hidden;
    }
    .process-section::before{
      content:"";
      position:absolute;
      inset:auto -10% -50% auto;
      width:480px;
      height:480px;
      border-radius:50%;
      background:rgba(178,58,91,.14);
      filter:blur(10px);
    }
    .process-section h2{color:var(--color-light)}
    .process-track{
      position:relative;
      display:grid;
      grid-template-columns:repeat(5,minmax(0,1fr));
      gap:16px;
      margin-top:34px;
    }
    .process-track::before{
      content:"";
      position:absolute;
      left:8%;
      right:8%;
      top:29px;
      height:2px;
      background:linear-gradient(90deg,var(--color-copper),rgba(178,58,91,.48));
    }
    .process-node{
      position:relative;
      z-index:2;
      padding:20px;
      border-radius:20px;
      background:rgba(255,249,244,.07);
      border:1px solid rgba(201,139,79,.22);
      min-height:176px;
      transition:var(--transition);
    }
    .process-node:hover{
      transform:translateY(-4px);
      background:rgba(255,249,244,.10);
      border-color:rgba(201,139,79,.48);
    }
    .node-dot{
      width:28px;
      height:28px;
      border-radius:50%;
      background:var(--color-copper);
      box-shadow:0 0 0 9px rgba(201,139,79,.14);
      margin-bottom:22px;
    }
    .process-node h3{font-size:18px;color:var(--color-light)}
    .process-node p{font-size:14px;color:rgba(247,237,231,.70);margin:0}
    .scenario-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
      align-items:stretch;
    }
    .scenario-card{
      padding:28px;
      border-radius:var(--radius-lg);
      background:var(--color-bg-soft);
      border:1px solid var(--border-rose);
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }
    .scenario-card:hover{
      transform:translateY(-4px);
      border-color:var(--border-copper);
    }
    .scenario-card.wide{
      background:
        linear-gradient(135deg,rgba(255,249,244,.98),rgba(247,240,234,.78));
    }
    .metric-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:22px;
    }
    .metric{
      padding:18px 14px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(201,139,79,.18);
    }
    .metric strong{display:block;color:var(--color-accent);font-size:26px;line-height:1.2}
    .metric span{font-size:13px;color:var(--color-muted)}
    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{display:flex;flex-direction:column;gap:14px}
    .accordion-item{
      border:1px solid var(--border-rose)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:var(--color-bg-soft);
      box-shadow:0 12px 30px rgba(58,20,40,.05);
    }
    .accordion-button{
      background:var(--color-bg-soft)!important;
      color:var(--color-primary)!important;
      font-weight:750;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      border-left:5px solid var(--color-accent);
      color:var(--color-accent)!important;
    }
    .accordion-button::after{
      filter:sepia(1) saturate(1.6) hue-rotate(350deg);
    }
    .accordion-body{
      padding:0 24px 22px 27px;
      color:var(--color-muted);
      background:var(--color-bg-soft);
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:42px;
      border-radius:28px;
      color:var(--color-light);
      background:
        radial-gradient(circle at 12% 20%,rgba(201,139,79,.20),transparent 28%),
        linear-gradient(135deg,var(--color-primary),var(--color-dark));
      border:1px solid rgba(201,139,79,.28);
      box-shadow:var(--shadow-strong);
    }
    .cta-panel h2{color:var(--color-light)}
    .cta-panel p{color:rgba(247,237,231,.76)}
    .contact-card{
      padding:26px;
      border-radius:24px;
      background:rgba(255,249,244,.08);
      border:1px solid rgba(201,139,79,.22);
    }
    .form-control,.form-select{
      border:1px solid rgba(201,139,79,.24);
      border-radius:16px;
      padding:13px 15px;
      background:rgba(255,249,244,.96);
      color:var(--color-text);
    }
    .form-label{
      color:rgba(247,237,231,.82);
      font-size:14px;
      font-weight:700;
      margin-bottom:7px;
    }
    .site-footer{
      padding:62px 0 28px;
      background:var(--color-dark);
      color:var(--color-light);
      border-top:1px solid rgba(201,139,79,.22);
    }
    .footer-brand strong{
      display:block;
      font-size:20px;
      margin-bottom:12px;
      color:#fff;
    }
    .footer-brand p{
      max-width:480px;
      color:rgba(247,237,231,.70);
      font-size:15px;
      margin:0;
    }
    .footer-title{
      color:var(--color-copper);
      font-weight:800;
      margin-bottom:14px;
    }
    .footer-links{display:flex;flex-direction:column;gap:9px}
    .footer-links a{
      color:rgba(247,237,231,.70);
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--color-copper);
      transform:translateX(3px);
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(247,237,231,.10);
      color:rgba(247,237,231,.58);
      font-size:13px;
    }
    @media (max-width:1199.98px){
      h1{font-size:42px}
      .process-track{grid-template-columns:repeat(3,minmax(0,1fr))}
      .process-track::before{display:none}
    }
    @media (max-width:991.98px){
      .top-strip .hide-md{display:none}
      .navbar-collapse{
        margin-top:14px;
        padding:16px;
        border-radius:22px;
        background:var(--color-primary);
        box-shadow:var(--shadow-strong);
      }
      .navbar-nav{align-items:stretch;gap:4px}
      .nav-link{
        color:rgba(247,237,231,.82)!important;
        border-radius:14px;
        padding:13px 14px!important;
        border-bottom:1px solid rgba(247,237,231,.08);
      }
      .nav-link:hover,.nav-link.active{
        color:#fff!important;
        background:rgba(201,139,79,.14);
      }
      .nav-link::after{display:none}
      .navbar-collapse .btn{margin-top:12px;width:100%}
      .layout-shell{grid-template-columns:1fr}
      .side-toc{position:relative;top:auto}
      .toc-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
      .scenario-grid{grid-template-columns:1fr}
    }
    @media (max-width:767.98px){
      .section{padding:58px 0}
      .section-sm{padding:44px 0}
      h1{font-size:34px;line-height:1.18}
      h2{font-size:28px}
      h3{font-size:21px}
      .category-hero{padding:58px 0}
      .hero-panel{margin-top:26px}
      .split-list,.metric-row,.process-track{grid-template-columns:1fr}
      .long-card,.cta-panel{padding:24px}
      .toc-links{grid-template-columns:1fr}
      .brand-logo{min-width:auto}
      .brand-text strong{max-width:220px}
      .top-strip .container{justify-content:center;text-align:center}
      .top-strip-actions{display:none}
      .footer-bottom{flex-direction:column}
    }
    @media (max-width:520px){
      body{font-size:15px}
      .container{padding-left:18px;padding-right:18px}
      .btn{width:100%;justify-content:center}
      .hero-meta span{width:100%;justify-content:center;text-align:center}
      .brand-text strong{max-width:190px;font-size:14px}
      .brand-mark{width:38px;height:38px}
      .long-card,.scenario-card,.contact-card{border-radius:20px}
    }

/* roulang page: category3 */
:root{
      --wine:#3A1428;
      --wine-2:#2B1022;
      --carbon:#171116;
      --rose:#B23A5B;
      --rose-dark:#9E2F4E;
      --copper:#C98B4F;
      --cream:#F7F0EA;
      --cream-2:#FFF9F4;
      --paper:#FFFFFF;
      --text:#2A1E25;
      --muted:#7D6873;
      --soft:#E9DCD3;
      --border:rgba(178,58,91,.18);
      --border-copper:rgba(201,139,79,.25);
      --shadow:0 18px 45px rgba(58,20,40,.08);
      --shadow-strong:0 26px 70px rgba(58,20,40,.16);
      --shadow-dark:0 24px 60px rgba(0,0,0,.28);
      --radius-xl:28px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1180px;
      --ease:all .28s 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(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(178,58,91,.10), transparent 34%),
        linear-gradient(180deg, #fffaf6 0%, var(--cream) 46%, #fffaf6 100%);
      font-size:16px;
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(178,58,91,.22);color:var(--wine)}
    .container{max-width:var(--container)}
    .section{padding:88px 0}
    .section-sm{padding:64px 0}
    .section-dark{
      background:
        radial-gradient(circle at 18% 18%, rgba(178,58,91,.22), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(201,139,79,.14), transparent 26%),
        linear-gradient(135deg,var(--wine) 0%, var(--carbon) 70%);
      color:#F7EDE7;
      position:relative;
      overflow:hidden;
    }
    .section-dark:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(201,139,79,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,139,79,.06) 1px, transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.68), transparent 90%);
      pointer-events:none;
    }
    .section-dark .container{position:relative;z-index:1}
    .top-strip{
      background:linear-gradient(90deg,var(--carbon),var(--wine));
      color:rgba(247,237,231,.82);
      font-size:13px;
      border-bottom:1px solid rgba(201,139,79,.18);
    }
    .top-strip-inner{
      min-height:40px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .top-strip .strip-meta{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
    .top-strip .dot{
      width:5px;height:5px;border-radius:50%;background:var(--copper);display:inline-block;opacity:.9
    }
    .top-strip a{
      color:#F7EDE7;
      border-bottom:1px solid rgba(201,139,79,.55);
      padding-bottom:1px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:99;
      background:rgba(247,240,234,.94);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(58,20,40,.08);
      box-shadow:0 10px 30px rgba(58,20,40,.06);
    }
    .navbar{padding:16px 0}
    .brand-logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:16px;
      background:
        linear-gradient(135deg,var(--rose),var(--wine) 58%,var(--copper));
      box-shadow:0 12px 24px rgba(178,58,91,.22);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      left:9px;right:9px;
      height:2px;
      background:rgba(255,249,244,.78);
      border-radius:99px;
    }
    .brand-mark:before{top:14px}
    .brand-mark:after{bottom:14px}
    .brand-text{display:flex;flex-direction:column;line-height:1.25}
    .brand-text strong{
      color:var(--wine);
      font-size:17px;
      letter-spacing:-.2px;
      max-width:300px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text span{
      color:var(--muted);
      font-size:12px;
    }
    .navbar-nav{align-items:center;gap:4px}
    .nav-link{
      position:relative;
      color:var(--text);
      font-weight:600;
      font-size:15px;
      padding:10px 14px!important;
      border-radius:999px;
    }
    .nav-link:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:4px;
      width:0;
      height:2px;
      background:var(--copper);
      border-radius:999px;
      transform:translateX(-50%);
      transition:var(--ease);
    }
    .nav-link:hover{color:var(--rose)}
    .nav-link:hover:after,.nav-link.active:after{width:24px}
    .nav-link.active{
      color:var(--rose);
      background:rgba(178,58,91,.08);
    }
    .navbar-toggler{
      border:1px solid rgba(58,20,40,.16);
      border-radius:14px;
      padding:9px 11px;
      box-shadow:none!important;
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(201,139,79,.25)!important}
    .navbar-toggler-icon{
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2858, 20, 40, .92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
    }
    .btn{
      border:0;
      border-radius:999px;
      font-weight:700;
      padding:12px 22px;
      line-height:1.2;
      transition:var(--ease);
    }
    .btn-primary-custom{
      background:var(--rose);
      color:#fffaf6!important;
      box-shadow:0 12px 28px rgba(178,58,91,.24);
    }
    .btn-primary-custom:hover,.btn-primary-custom:active{
      background:var(--rose-dark)!important;
      color:#fffaf6!important;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(178,58,91,.32);
    }
    .btn-secondary-custom{
      background:transparent;
      color:var(--copper)!important;
      border:1px solid rgba(201,139,79,.65);
    }
    .btn-secondary-custom:hover,.btn-secondary-custom:active{
      background:var(--copper)!important;
      color:var(--wine)!important;
      transform:translateY(-2px);
    }
    .btn:focus-visible,.form-control:focus,.form-select:focus,.accordion-button:focus{
      outline:0;
      box-shadow:0 0 0 4px rgba(201,139,79,.35)!important;
      border-color:rgba(201,139,79,.75)!important;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--rose);
      background:rgba(178,58,91,.08);
      border:1px solid rgba(178,58,91,.14);
      border-radius:999px;
      padding:8px 13px;
      font-size:13px;
      font-weight:700;
      margin-bottom:18px;
    }
    .eyebrow.dark{
      color:#F7EDE7;
      background:rgba(255,249,244,.08);
      border-color:rgba(201,139,79,.28);
    }
    .eyebrow:before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--copper);
      box-shadow:0 0 0 4px rgba(201,139,79,.16);
    }
    h1,h2,h3,h4{letter-spacing:-.5px}
    .hero{
      padding:92px 0 76px;
      background:
        radial-gradient(circle at 72% 12%, rgba(201,139,79,.18), transparent 25%),
        radial-gradient(circle at 20% 20%, rgba(178,58,91,.22), transparent 32%),
        linear-gradient(135deg,var(--wine) 0%, var(--carbon) 74%);
      color:#F7EDE7;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:54px 54px;
      opacity:.42;
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      right:-120px;
      bottom:-140px;
      width:430px;
      height:430px;
      border:1px solid rgba(201,139,79,.28);
      border-radius:50%;
      box-shadow:inset 0 0 0 28px rgba(201,139,79,.035);
    }
    .hero .container{position:relative;z-index:1}
    .hero h1{
      font-size:52px;
      line-height:1.14;
      font-weight:800;
      margin:0 0 22px;
      max-width:820px;
    }
    .hero p{
      color:rgba(247,237,231,.78);
      font-size:18px;
      line-height:1.85;
      max-width:720px;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:30px}
    .hero-route{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:26px;
    }
    .route-chip{
      background:rgba(255,249,244,.08);
      border:1px solid rgba(201,139,79,.22);
      border-radius:18px;
      padding:14px 15px;
      color:rgba(247,237,231,.86);
      min-height:82px;
    }
    .route-chip strong{
      display:block;
      color:#fffaf6;
      font-size:15px;
      margin-bottom:4px;
    }
    .route-chip span{font-size:13px;color:rgba(247,237,231,.66)}
    .map-panel{
      background:linear-gradient(145deg,rgba(255,249,244,.10),rgba(255,249,244,.04));
      border:1px solid rgba(201,139,79,.28);
      border-radius:var(--radius-xl);
      padding:24px;
      box-shadow:var(--shadow-dark);
      position:relative;
      overflow:hidden;
      min-height:410px;
    }
    .map-panel:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px dashed rgba(201,139,79,.28);
      border-radius:24px;
      pointer-events:none;
    }
    .node-card{
      position:relative;
      z-index:1;
      background:rgba(23,17,22,.72);
      border:1px solid rgba(201,139,79,.22);
      border-radius:20px;
      padding:18px;
      margin-bottom:14px;
    }
    .node-card:nth-child(2){margin-left:38px}
    .node-card:nth-child(3){margin-left:78px}
    .node-card .label{
      color:var(--copper);
      font-size:12px;
      font-weight:800;
      margin-bottom:4px;
    }
    .node-card strong{display:block;color:#fffaf6;font-size:18px;margin-bottom:4px}
    .node-card p{font-size:13px;line-height:1.6;margin:0;color:rgba(247,237,231,.68)}
    .section-title{max-width:760px;margin-bottom:38px}
    .section-title.center{text-align:center;margin-left:auto;margin-right:auto}
    .section-title h2{
      font-size:38px;
      line-height:1.25;
      font-weight:800;
      margin-bottom:14px;
      color:var(--wine);
    }
    .section-dark .section-title h2{color:#F7EDE7}
    .section-title p{
      color:var(--muted);
      margin:0;
      font-size:17px;
    }
    .section-dark .section-title p{color:rgba(247,237,231,.72)}
    .partner-card{
      height:100%;
      background:var(--cream-2);
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      padding:28px;
      box-shadow:var(--shadow);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .partner-card:after{
      content:"";
      position:absolute;
      right:-45px;
      top:-45px;
      width:120px;height:120px;
      border-radius:50%;
      background:rgba(201,139,79,.12);
    }
    .partner-card:hover{
      transform:translateY(-4px);
      border-color:rgba(201,139,79,.55);
      box-shadow:var(--shadow-strong);
    }
    .partner-card .icon-box{
      width:50px;height:50px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background:var(--wine);
      color:#F7EDE7;
      font-weight:900;
      margin-bottom:18px;
      box-shadow:0 12px 24px rgba(58,20,40,.14);
    }
    .partner-card h3{font-size:23px;font-weight:800;color:var(--wine);margin-bottom:10px}
    .partner-card p{color:var(--muted);margin-bottom:18px}
    .tag-list{display:flex;flex-wrap:wrap;gap:8px}
    .tag{
      display:inline-flex;
      align-items:center;
      border:1px solid rgba(201,139,79,.28);
      background:rgba(255,255,255,.55);
      color:var(--wine);
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:700;
    }
    .wide-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      padding:34px;
      box-shadow:var(--shadow);
    }
    .scenario-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .scenario-main{
      background:
        linear-gradient(135deg, rgba(58,20,40,.96), rgba(23,17,22,.98)),
        radial-gradient(circle at 80% 20%, rgba(201,139,79,.20), transparent 30%);
      color:#F7EDE7;
      border-radius:var(--radius-xl);
      padding:34px;
      min-height:360px;
      box-shadow:var(--shadow-dark);
      position:relative;
      overflow:hidden;
    }
    .scenario-main:after{
      content:"";
      position:absolute;
      width:220px;height:220px;
      right:-70px;bottom:-80px;
      border-radius:50%;
      border:1px solid rgba(201,139,79,.30);
      box-shadow:inset 0 0 0 18px rgba(201,139,79,.04);
    }
    .scenario-main h3{font-size:28px;font-weight:800;margin-bottom:14px}
    .scenario-main p{color:rgba(247,237,231,.74);max-width:560px}
    .mission-list{display:grid;gap:12px;margin-top:24px}
    .mission-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      background:rgba(255,249,244,.07);
      border:1px solid rgba(201,139,79,.18);
      border-radius:18px;
      padding:15px;
    }
    .mission-item b{
      width:26px;height:26px;border-radius:50%;
      background:var(--copper);
      color:var(--wine);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      font-size:13px;
    }
    .scenario-side{display:grid;gap:18px}
    .mini-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:22px;
      padding:24px;
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .mini-card:hover{
      transform:translateY(-4px);
      border-color:rgba(201,139,79,.55);
    }
    .mini-card strong{display:block;font-size:19px;color:var(--wine);margin-bottom:6px}
    .mini-card span{color:var(--muted);font-size:14px}
    .timeline{
      position:relative;
      display:grid;
      gap:18px;
      margin-top:18px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      top:22px;
      bottom:22px;
      left:25px;
      width:2px;
      background:linear-gradient(var(--copper),rgba(201,139,79,.08));
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:52px 1fr;
      gap:18px;
      align-items:start;
    }
    .timeline-num{
      position:relative;
      z-index:1;
      width:52px;height:52px;
      border-radius:18px;
      background:var(--rose);
      color:#fffaf6;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      box-shadow:0 14px 28px rgba(178,58,91,.20);
      border:3px solid var(--cream);
    }
    .timeline-box{
      background:var(--cream-2);
      border:1px solid var(--border);
      border-radius:22px;
      padding:22px 24px;
      box-shadow:var(--shadow);
    }
    .timeline-box h3{font-size:21px;font-weight:800;color:var(--wine);margin-bottom:6px}
    .timeline-box p{margin:0;color:var(--muted)}
    .rule-panel{
      background:rgba(255,249,244,.07);
      border:1px solid rgba(201,139,79,.22);
      border-radius:var(--radius-xl);
      padding:30px;
      height:100%;
      transition:var(--ease);
    }
    .rule-panel:hover{
      transform:translateY(-4px);
      background:rgba(255,249,244,.10);
      border-color:rgba(201,139,79,.48);
    }
    .rule-panel .rule-no{
      color:var(--copper);
      font-size:13px;
      font-weight:900;
      margin-bottom:10px;
    }
    .rule-panel h3{font-size:23px;font-weight:800;color:#fffaf6;margin-bottom:10px}
    .rule-panel p{color:rgba(247,237,231,.70);margin:0}
    .check-list{display:grid;gap:12px;margin-top:22px}
    .check-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:rgba(247,237,231,.78);
      font-size:15px;
    }
    .check-item:before{
      content:"";
      width:10px;height:10px;border-radius:50%;
      background:var(--copper);
      margin-top:9px;
      box-shadow:0 0 0 5px rgba(201,139,79,.10);
      flex:0 0 auto;
    }
    .package-card{
      height:100%;
      background:#fff;
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      padding:30px;
      box-shadow:var(--shadow);
      transition:var(--ease);
      position:relative;
    }
    .package-card.featured{
      background:linear-gradient(180deg,#fff,#fff8f1);
      border-color:rgba(201,139,79,.55);
      box-shadow:var(--shadow-strong);
    }
    .package-card:hover{transform:translateY(-4px);border-color:rgba(201,139,79,.55)}
    .package-badge{
      display:inline-flex;
      background:rgba(178,58,91,.10);
      color:var(--rose);
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:800;
      margin-bottom:16px;
    }
    .package-card h3{font-size:24px;font-weight:800;color:var(--wine);margin-bottom:10px}
    .package-card p{color:var(--muted)}
    .package-card ul{
      list-style:none;
      padding:0;
      margin:18px 0 0;
      display:grid;
      gap:10px;
      color:var(--text);
    }
    .package-card li{
      position:relative;
      padding-left:20px;
      font-size:15px;
    }
    .package-card li:before{
      content:"";
      position:absolute;
      left:0;top:11px;
      width:7px;height:7px;border-radius:50%;
      background:var(--copper);
    }
    .accordion{display:grid;gap:14px}
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:20px!important;
      overflow:hidden;
      background:var(--cream-2);
      box-shadow:0 10px 26px rgba(58,20,40,.05);
    }
    .accordion-button{
      background:var(--cream-2)!important;
      color:var(--wine)!important;
      font-weight:800;
      font-size:17px;
      padding:20px 22px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      border-left:5px solid var(--rose);
      color:var(--rose)!important;
    }
    .accordion-button::after{
      filter:sepia(1) saturate(1.8) hue-rotate(340deg);
    }
    .accordion-body{
      color:var(--muted);
      padding:0 24px 22px 27px;
      background:var(--cream-2);
    }
    .contact-wrap{
      background:
        radial-gradient(circle at 88% 12%, rgba(201,139,79,.16), transparent 28%),
        linear-gradient(135deg,var(--wine),var(--carbon));
      border-radius:34px;
      padding:42px;
      color:#F7EDE7;
      box-shadow:var(--shadow-dark);
      overflow:hidden;
      position:relative;
    }
    .contact-wrap:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:38px 38px;
      opacity:.28;
    }
    .contact-wrap .row{position:relative;z-index:1}
    .contact-wrap h2{font-size:36px;font-weight:800;margin-bottom:14px}
    .contact-wrap p{color:rgba(247,237,231,.72)}
    .contact-note{
      display:grid;
      gap:12px;
      margin-top:24px;
    }
    .contact-note span{
      display:flex;
      gap:10px;
      align-items:center;
      color:rgba(247,237,231,.82);
      font-size:15px;
    }
    .contact-note span:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--copper);
    }
    .form-card{
      background:rgba(255,249,244,.96);
      border:1px solid rgba(201,139,79,.28);
      border-radius:26px;
      padding:28px;
      color:var(--text);
      box-shadow:0 24px 60px rgba(0,0,0,.22);
    }
    .form-label{font-weight:800;color:var(--wine);font-size:14px;margin-bottom:7px}
    .form-control,.form-select{
      border-radius:16px;
      border:1px solid rgba(58,20,40,.12);
      background:#fff;
      padding:13px 15px;
      color:var(--text);
    }
    textarea.form-control{min-height:116px;resize:vertical}
    .form-hint{font-size:12px;color:var(--copper);margin-top:10px}
    .site-footer{
      background:linear-gradient(135deg,var(--wine),var(--carbon));
      color:#F7EDE7;
      padding:58px 0 28px;
      border-top:1px solid rgba(201,139,79,.22);
    }
    .footer-brand strong{
      display:block;
      font-size:20px;
      margin-bottom:12px;
    }
    .footer-brand p{
      color:rgba(247,237,231,.70);
      max-width:520px;
      margin:0;
      font-size:14px;
    }
    .footer-title{
      color:#fffaf6;
      font-weight:800;
      margin-bottom:14px;
      font-size:15px;
    }
    .footer-links{display:grid;gap:9px}
    .footer-links a{
      color:rgba(247,237,231,.68);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--copper);transform:translateX(3px)}
    .footer-bottom{
      margin-top:36px;
      padding-top:22px;
      border-top:1px solid rgba(247,237,231,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      color:rgba(247,237,231,.58);
      font-size:13px;
      flex-wrap:wrap;
    }
    @media (max-width: 1199px){
      .hero h1{font-size:46px}
      .brand-text strong{max-width:240px}
      .hero-route{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width: 991px){
      .section{padding:68px 0}
      .navbar-collapse{
        margin-top:14px;
        background:var(--wine);
        border:1px solid rgba(201,139,79,.24);
        border-radius:22px;
        padding:14px;
        box-shadow:var(--shadow-dark);
      }
      .navbar-nav{align-items:stretch;gap:0}
      .nav-link{
        color:rgba(247,237,231,.86)!important;
        border-radius:14px;
        padding:13px 14px!important;
        border-bottom:1px solid rgba(247,237,231,.08);
      }
      .nav-link.active{
        background:rgba(201,139,79,.14);
        color:#fffaf6!important;
      }
      .nav-link:after{display:none}
      .navbar .btn{width:100%;margin-top:12px}
      .hero{padding:74px 0 60px}
      .map-panel{margin-top:26px;min-height:auto}
      .scenario-grid{grid-template-columns:1fr}
      .contact-wrap{padding:30px}
    }
    @media (max-width: 767px){
      .top-strip-inner{min-height:38px;font-size:12px}
      .top-strip .hide-sm{display:none}
      .brand-logo{min-width:0}
      .brand-text strong{font-size:15px;max-width:210px}
      .hero h1{font-size:36px}
      .hero p{font-size:16px}
      .hero-actions .btn{width:100%}
      .hero-route{grid-template-columns:1fr}
      .section-title h2,.contact-wrap h2{font-size:30px}
      .wide-card,.scenario-main,.contact-wrap{border-radius:24px;padding:24px}
      .timeline-item{grid-template-columns:44px 1fr;gap:12px}
      .timeline:before{left:21px}
      .timeline-num{width:44px;height:44px;border-radius:15px}
      .footer-bottom{align-items:flex-start;flex-direction:column}
    }
    @media (max-width: 520px){
      body{font-size:15px}
      .section{padding:54px 0}
      .hero{padding:58px 0 48px}
      .hero h1{font-size:32px;letter-spacing:-.35px}
      .route-chip,.partner-card,.mini-card,.package-card,.rule-panel,.form-card{padding:22px}
      .node-card:nth-child(2),.node-card:nth-child(3){margin-left:0}
      .contact-wrap{padding:22px}
      .btn{width:100%}
    }

/* roulang page: category2 */
:root{
      --bg:#f7f0ea;
      --bg-soft:#fff9f4;
      --bg-deep:#171116;
      --panel:#241822;
      --panel-2:#2b1022;
      --primary:#b23a5b;
      --primary-dark:#9e2f4e;
      --secondary:#c98b4f;
      --text:#2a1e25;
      --text-soft:#7d6873;
      --text-inverse:#f7ede7;
      --line:rgba(178,58,91,.18);
      --line-2:rgba(201,139,79,.24);
      --shadow:0 18px 45px rgba(58,20,40,.08);
      --shadow-deep:0 24px 60px rgba(0,0,0,.28);
      --radius-xl:26px;
      --radius-lg:20px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1180px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *,*::before,*::after{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(--text);
      background:
        radial-gradient(circle at 15% 10%, rgba(178,58,91,.08), transparent 24%),
        radial-gradient(circle at 85% 0%, rgba(201,139,79,.10), transparent 22%),
        linear-gradient(180deg, #fcf8f4 0%, var(--bg) 36%, #f6ece4 100%);
      line-height:1.8;
      letter-spacing:.01em;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.08;
      background-image:
        linear-gradient(transparent 0 95%, rgba(255,255,255,.35) 100%),
        linear-gradient(90deg, transparent 0 95%, rgba(255,255,255,.22) 100%);
      background-size:28px 28px;
      mix-blend-mode:multiply;
      z-index:0;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:color .22s var(--ease), transform .22s var(--ease), opacity .22s var(--ease);
    }
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{
      font:inherit;
    }
    ::selection{
      background:rgba(178,58,91,.18);
      color:var(--text);
    }
    .page-wrap{position:relative;z-index:1}
    .container{max-width:var(--container)}
    .topbar{
      background:linear-gradient(90deg, #201018 0%, #2b1022 60%, #171116 100%);
      color:rgba(247,237,231,.85);
      font-size:13px;
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .topbar .container{
      min-height:40px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding-top:6px;
      padding-bottom:6px;
    }
    .topbar-left,.topbar-right{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .topbar .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      color:rgba(247,237,231,.92);
      border:1px solid rgba(255,255,255,.08);
    }
    .topbar .mini-link{
      color:rgba(247,237,231,.92);
      opacity:.92;
    }
    .topbar .mini-link:hover{color:#fff;opacity:1}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(247,240,234,.82);
      backdrop-filter:saturate(140%) blur(14px);
      border-bottom:1px solid rgba(58,20,40,.08);
      box-shadow:0 12px 30px rgba(45,25,35,.05);
    }
    .site-header .navbar{
      padding:14px 0;
    }
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.72), transparent 32%),
        linear-gradient(145deg, var(--primary) 0%, #6f1838 55%, #2b1022 100%);
      box-shadow:0 12px 30px rgba(178,58,91,.26);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark::before,
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:9px;
      border-radius:10px;
      border:1px solid rgba(255,255,255,.22);
    }
    .brand-mark::after{
      inset:15px 11px 11px 15px;
      border-radius:8px;
      border-color:rgba(201,139,79,.55);
      transform:rotate(12deg);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
      min-width:0;
    }
    .brand-text strong{
      font-size:18px;
      color:var(--text);
      letter-spacing:.01em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text span{
      font-size:12px;
      color:var(--text-soft);
      margin-top:5px;
    }
    .navbar .navbar-nav{
      gap:2px;
    }
    .navbar .nav-link{
      color:rgba(42,30,37,.82);
      font-weight:600;
      padding:10px 14px;
      border-radius:999px;
      position:relative;
    }
    .navbar .nav-link:hover,
    .navbar .nav-link:focus{
      color:var(--primary);
      background:rgba(178,58,91,.06);
    }
    .navbar .nav-link.active{
      color:var(--primary);
      background:rgba(178,58,91,.10);
    }
    .navbar .nav-link::after{
      content:"";
      position:absolute;
      left:14px;
      right:14px;
      bottom:6px;
      height:2px;
      border-radius:999px;
      background:transparent;
      transition:background .22s var(--ease), transform .22s var(--ease);
      transform:scaleX(.65);
      transform-origin:left center;
    }
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after{
      background:linear-gradient(90deg, var(--primary), var(--secondary));
      transform:scaleX(1);
    }
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-soft-custom{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      font-weight:700;
      padding:12px 20px;
      border:1px solid transparent;
      transition:transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
      white-space:nowrap;
      text-decoration:none;
    }
    .btn-primary-custom{
      background:linear-gradient(135deg, var(--primary) 0%, #9e2f4e 100%);
      color:#fff8f4;
      box-shadow:0 14px 28px rgba(178,58,91,.24);
    }
    .btn-primary-custom:hover,
    .btn-primary-custom:focus{
      color:#fff;
      background:linear-gradient(135deg, var(--primary-dark) 0%, #932947 100%);
      transform:translateY(-2px);
      box-shadow:0 18px 32px rgba(178,58,91,.28);
    }
    .btn-outline-custom{
      background:transparent;
      color:var(--secondary);
      border-color:rgba(201,139,79,.45);
    }
    .btn-outline-custom:hover,
    .btn-outline-custom:focus{
      background:var(--secondary);
      color:#23151d;
      border-color:var(--secondary);
      transform:translateY(-2px);
      box-shadow:0 16px 30px rgba(201,139,79,.18);
    }
    .btn-soft-custom{
      background:rgba(178,58,91,.08);
      color:var(--primary);
      border-color:rgba(178,58,91,.12);
    }
    .btn-soft-custom:hover,
    .btn-soft-custom:focus{
      background:rgba(178,58,91,.12);
      color:var(--primary-dark);
      transform:translateY(-2px);
    }
    .btn:focus,
    .btn:active,
    .nav-link:focus,
    .form-control:focus,
    .form-select:focus,
    .accordion-button:focus{
      box-shadow:0 0 0 .25rem rgba(201,139,79,.28) !important;
      outline:none !important;
    }
    .navbar-toggler{
      border:1px solid rgba(178,58,91,.18);
      border-radius:14px;
      padding:10px 12px;
      box-shadow:none !important;
    }
    .navbar-toggler-icon{
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(178,58,91,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .navbar-collapse{
      gap:16px;
    }
    .hero-section{
      padding:34px 0 20px;
      position:relative;
    }
    .hero-shell{
      background:
        radial-gradient(circle at 20% 10%, rgba(201,139,79,.18), transparent 20%),
        radial-gradient(circle at 80% 0%, rgba(178,58,91,.22), transparent 18%),
        linear-gradient(135deg, #23151d 0%, #2b1022 50%, #171116 100%);
      color:var(--text-inverse);
      border-radius:32px;
      box-shadow:var(--shadow-deep);
      overflow:hidden;
      position:relative;
      border:1px solid rgba(255,255,255,.06);
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.03) 42% 43%, transparent 43% 100%),
        radial-gradient(circle at 15% 85%, rgba(201,139,79,.12), transparent 18%);
      pointer-events:none;
    }
    .hero-shell::after{
      content:"";
      position:absolute;
      inset:auto -8% -40% auto;
      width:340px;
      height:340px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(178,58,91,.20) 0%, transparent 70%);
      filter:blur(6px);
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:0;
      min-height:560px;
    }
    .hero-copy{
      padding:56px 56px 52px;
      position:relative;
      z-index:1;
    }
    .hero-visual{
      padding:32px 32px 32px 0;
      display:flex;
      align-items:stretch;
      position:relative;
      z-index:1;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      color:rgba(247,237,231,.90);
      font-size:13px;
      letter-spacing:.04em;
      margin-bottom:18px;
    }
    .eyebrow i{
      width:8px;
      height:8px;
      display:inline-block;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 6px rgba(201,139,79,.12);
    }
    .hero-copy h1{
      font-size:clamp(34px, 4vw, 56px);
      line-height:1.12;
      font-weight:800;
      margin:0 0 18px;
      max-width:12.2em;
      letter-spacing:.01em;
    }
    .hero-copy .lead{
      font-size:17px;
      color:rgba(247,237,231,.78);
      max-width:36rem;
      margin-bottom:24px;
    }
    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:24px;
    }
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .trust-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      color:rgba(247,237,231,.84);
      font-size:13px;
    }
    .trust-pill .dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 4px rgba(201,139,79,.12);
    }
    .panel-card{
      width:100%;
      border-radius:30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
        radial-gradient(circle at 10% 5%, rgba(201,139,79,.12), transparent 22%),
        linear-gradient(180deg, #241822 0%, #1d1218 100%);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 26px 60px rgba(0,0,0,.34);
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .panel-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, transparent 0 96%, rgba(255,255,255,.04) 96% 100%),
        linear-gradient(transparent 0 96%, rgba(255,255,255,.04) 96% 100%);
      background-size:36px 36px;
      opacity:.35;
      pointer-events:none;
    }
    .panel-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:16px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .panel-title{
      font-size:15px;
      color:rgba(247,237,231,.90);
      margin:0 0 4px;
      font-weight:700;
    }
    .panel-sub{
      font-size:13px;
      color:rgba(247,237,231,.62);
      margin:0;
    }
    .panel-badge{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(201,139,79,.10);
      color:#f3cfab;
      border:1px solid rgba(201,139,79,.18);
      font-size:12px;
      white-space:nowrap;
    }
    .metric-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
      position:relative;
      z-index:1;
    }
    .metric-box{
      border-radius:20px;
      padding:18px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.06);
      min-height:112px;
    }
    .metric-box strong{
      display:block;
      font-size:28px;
      line-height:1.1;
      color:#fff3eb;
      margin-bottom:8px;
      letter-spacing:.01em;
    }
    .metric-box span{
      display:block;
      font-size:13px;
      color:rgba(247,237,231,.68);
    }
    .signal-list{
      margin-top:16px;
      display:grid;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .signal-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-radius:18px;
      padding:13px 16px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.06);
      color:rgba(247,237,231,.88);
      font-size:14px;
    }
    .signal-item em{
      font-style:normal;
      color:#f6d5b1;
      font-weight:700;
    }
    .section{
      padding:84px 0;
      position:relative;
    }
    .section.tight{
      padding:64px 0;
    }
    .section-title{
      margin-bottom:26px;
    }
    .section-title .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      background:rgba(178,58,91,.08);
      border:1px solid rgba(178,58,91,.12);
      border-radius:999px;
      padding:7px 13px;
      font-size:13px;
      font-weight:700;
      margin-bottom:12px;
    }
    .section-title h2{
      font-size:clamp(28px, 3vw, 40px);
      line-height:1.22;
      margin:0 0 12px;
      font-weight:800;
      letter-spacing:.01em;
      color:var(--text);
    }
    .section-title p{
      margin:0;
      max-width:42rem;
      color:var(--text-soft);
      font-size:16px;
    }
    .note-strip{
      margin-top:-6px;
      margin-bottom:28px;
      padding:14px 18px;
      border-radius:18px;
      background:linear-gradient(90deg, rgba(178,58,91,.08), rgba(201,139,79,.08));
      border:1px solid rgba(178,58,91,.12);
      color:var(--text);
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
    }
    .note-strip span{
      color:var(--text-soft);
      font-size:14px;
    }
    .note-strip strong{
      color:var(--text);
    }
    .mini-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--text);
      box-shadow:0 10px 25px rgba(58,20,40,.05);
      font-size:13px;
    }
    .mag-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .mag-card{
      border-radius:var(--radius-xl);
      background:var(--bg-soft);
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
      padding:28px;
      position:relative;
      overflow:hidden;
      transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
      min-height:100%;
    }
    .mag-card:hover{
      transform:translateY(-4px);
      border-color:rgba(201,139,79,.42);
      box-shadow:0 22px 46px rgba(58,20,40,.11);
    }
    .mag-card.dark{
      background:linear-gradient(180deg, #2b1022 0%, #1a1218 100%);
      color:var(--text-inverse);
      border-color:rgba(255,255,255,.08);
      box-shadow:var(--shadow-deep);
    }
    .mag-card.dark .mag-title,
    .mag-card.dark .mag-text,
    .mag-card.dark .count{
      color:var(--text-inverse);
    }
    .mag-card.dark .mag-text{color:rgba(247,237,231,.74)}
    .mag-card .count{
      font-size:13px;
      color:var(--secondary);
      font-weight:800;
      margin-bottom:14px;
      letter-spacing:.12em;
    }
    .mag-title{
      font-size:24px;
      line-height:1.24;
      margin:0 0 12px;
      font-weight:800;
      color:var(--text);
    }
    .mag-text{
      color:var(--text-soft);
      margin:0 0 16px;
      font-size:15px;
      line-height:1.8;
    }
    .mag-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .mag-tag{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      background:#fff;
      color:var(--text);
      border:1px solid var(--line);
      font-size:13px;
    }
    .mag-card.dark .mag-tag{
      background:rgba(255,255,255,.06);
      color:rgba(247,237,231,.88);
      border-color:rgba(255,255,255,.08);
    }
    .mag-card.big{grid-column:span 6}
    .mag-card.mid{grid-column:span 3}
    .mag-card.midwide{grid-column:span 4}
    .mag-card.full{grid-column:span 12}
    .mag-card.wide{grid-column:span 8}
    .mag-card.skinny{grid-column:span 4}
    .flow-shell{
      border-radius:32px;
      background:linear-gradient(135deg, #fff9f4 0%, #fff 100%);
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .flow-row{
      display:grid;
      grid-template-columns:repeat(5,minmax(0,1fr));
      gap:14px;
      margin-top:12px;
    }
    .flow-step{
      border-radius:22px;
      padding:18px;
      background:linear-gradient(180deg, #fff 0%, #fcf7f2 100%);
      border:1px solid rgba(58,20,40,.08);
      min-height:148px;
      position:relative;
      transition:transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
    }
    .flow-step:hover{
      transform:translateY(-4px);
      border-color:rgba(201,139,79,.36);
      box-shadow:0 18px 38px rgba(58,20,40,.10);
    }
    .flow-step .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;
      height:34px;
      border-radius:50%;
      background:rgba(178,58,91,.10);
      color:var(--primary);
      font-weight:800;
      margin-bottom:12px;
    }
    .flow-step h3{
      font-size:18px;
      margin:0 0 8px;
      font-weight:800;
      color:var(--text);
    }
    .flow-step p{
      font-size:14px;
      color:var(--text-soft);
      margin:0;
      line-height:1.75;
    }
    .flow-arrow{
      position:absolute;
      right:-10px;
      top:50%;
      transform:translateY(-50%);
      color:rgba(201,139,79,.72);
      font-size:22px;
      font-weight:700;
      z-index:2;
    }
    .info-panel{
      border-radius:30px;
      background:
        linear-gradient(180deg, #fff 0%, #fbf4ef 100%);
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .info-panel.dark{
      background:linear-gradient(180deg, #2b1022 0%, #1b1217 100%);
      color:var(--text-inverse);
      border-color:rgba(255,255,255,.08);
      box-shadow:var(--shadow-deep);
    }
    .feature-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .feature-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:16px 0;
      border-bottom:1px solid rgba(58,20,40,.08);
    }
    .info-panel.dark .feature-item{
      border-bottom-color:rgba(255,255,255,.08);
    }
    .feature-item:last-child{border-bottom:none;padding-bottom:0}
    .feature-icon{
      flex:0 0 auto;
      width:38px;
      height:38px;
      border-radius:14px;
      background:rgba(178,58,91,.10);
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
    }
    .info-panel.dark .feature-icon{
      background:rgba(201,139,79,.12);
      color:#f3cfab;
    }
    .feature-item h3{
      margin:0 0 4px;
      font-size:18px;
      font-weight:800;
      color:inherit;
    }
    .feature-item p{
      margin:0;
      color:inherit;
      opacity:.76;
      font-size:14px;
      line-height:1.8;
    }
    .benefit-stack{
      display:grid;
      gap:16px;
    }
    .benefit-card{
      border-radius:24px;
      padding:22px;
      background:#fff;
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
      transition:transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
    }
    .benefit-card:hover{
      transform:translateY(-4px);
      border-color:rgba(201,139,79,.36);
      box-shadow:0 20px 42px rgba(58,20,40,.11);
    }
    .benefit-card .label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border-radius:999px;
      background:rgba(178,58,91,.08);
      color:var(--primary);
      font-size:12px;
      font-weight:700;
      margin-bottom:12px;
    }
    .benefit-card h3{
      margin:0 0 8px;
      font-size:22px;
      line-height:1.25;
      font-weight:800;
    }
    .benefit-card p{
      margin:0;
      color:var(--text-soft);
      font-size:15px;
      line-height:1.8;
    }
    .benefit-mini{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .bullet{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:#fcf7f2;
      border:1px solid rgba(58,20,40,.08);
      color:var(--text);
      font-size:13px;
    }
    .bullet strong{
      color:var(--secondary);
    }
    .funnel{
      border-radius:28px;
      padding:24px;
      background:linear-gradient(180deg, #fff 0%, #fbf5ef 100%);
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
    }
    .funnel-rail{
      display:grid;
      gap:12px;
    }
    .funnel-step{
      display:grid;
      grid-template-columns:110px 1fr auto;
      align-items:center;
      gap:16px;
      padding:16px 18px;
      background:#fff;
      border:1px solid rgba(58,20,40,.08);
      border-radius:20px;
      transition:transform .22s var(--ease), border-color .22s var(--ease);
    }
    .funnel-step:hover{
      transform:translateY(-3px);
      border-color:rgba(201,139,79,.34);
    }
    .funnel-step .stage{
      font-size:13px;
      color:var(--primary);
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .funnel-step .text{
      color:var(--text);
      font-weight:700;
    }
    .funnel-step .hint{
      color:var(--text-soft);
      font-size:13px;
    }
    .funnel-step .bar{
      width:100%;
      max-width:160px;
      height:10px;
      border-radius:999px;
      background:rgba(178,58,91,.08);
      overflow:hidden;
      position:relative;
    }
    .funnel-step .bar::after{
      content:"";
      position:absolute;
      inset:0 auto 0 0;
      width:var(--w);
      border-radius:inherit;
      background:linear-gradient(90deg, var(--primary), var(--secondary));
    }
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .compare-card{
      border-radius:28px;
      padding:24px;
      background:#fff;
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
      transition:transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
    }
    .compare-card:hover{
      transform:translateY(-4px);
      border-color:rgba(201,139,79,.38);
      box-shadow:0 22px 44px rgba(58,20,40,.11);
    }
    .compare-card.recommended{
      background:linear-gradient(180deg, #2b1022 0%, #1c1218 100%);
      color:var(--text-inverse);
      box-shadow:var(--shadow-deep);
    }
    .compare-card .ribbon{
      position:absolute;
      top:18px;
      right:-34px;
      transform:rotate(36deg);
      background:linear-gradient(135deg, var(--primary), #8e2745);
      color:#fff;
      font-size:12px;
      font-weight:800;
      padding:7px 50px;
      letter-spacing:.08em;
      box-shadow:0 10px 20px rgba(178,58,91,.2);
    }
    .compare-card h3{
      margin:0 0 10px;
      font-size:22px;
      font-weight:800;
    }
    .compare-card p{
      margin:0 0 18px;
      color:inherit;
      opacity:.74;
      font-size:14px;
      line-height:1.8;
    }
    .check-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      position:relative;
      padding-left:22px;
      font-size:14px;
      color:inherit;
      opacity:.92;
      line-height:1.7;
    }
    .check-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.55em;
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 4px rgba(201,139,79,.12);
    }
    .comparison-band{
      margin-top:20px;
      padding:16px 18px;
      border-radius:20px;
      background:rgba(178,58,91,.06);
      border:1px solid rgba(178,58,91,.12);
      color:var(--text);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .comparison-band strong{
      color:var(--primary);
      flex:0 0 auto;
    }
    .comparison-table{
      display:grid;
      gap:12px;
    }
    .table-row{
      display:grid;
      grid-template-columns:1.1fr 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .table-head{
      font-size:13px;
      font-weight:800;
      color:var(--text-soft);
      text-transform:uppercase;
      letter-spacing:.08em;
      margin-bottom:4px;
    }
    .table-cell{
      padding:16px 18px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(58,20,40,.08);
      box-shadow:0 12px 24px rgba(58,20,40,.04);
      color:var(--text);
      font-size:14px;
      line-height:1.75;
    }
    .table-cell.good{
      border-color:rgba(201,139,79,.24);
      background:linear-gradient(180deg, #fff 0%, #fff8f0 100%);
    }
    .faq-shell{
      border-radius:32px;
      background:linear-gradient(180deg, #fff 0%, #fbf6f1 100%);
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
      padding:30px;
    }
    .accordion{
      --bs-accordion-bg:transparent;
      --bs-accordion-border-color:transparent;
      --bs-accordion-btn-padding-x:0;
      --bs-accordion-btn-padding-y:18px;
      --bs-accordion-body-padding-x:0;
      --bs-accordion-body-padding-y:0 0 18px 0;
      --bs-accordion-active-bg:transparent;
      --bs-accordion-active-color:var(--primary);
      --bs-accordion-btn-focus-border-color:transparent;
      --bs-accordion-btn-focus-box-shadow:none;
    }
    .accordion-item{
      background:transparent;
      border-bottom:1px solid rgba(58,20,40,.08);
    }
    .accordion-button{
      background:transparent !important;
      color:var(--text);
      font-weight:800;
      font-size:16px;
      padding:18px 0;
      box-shadow:none !important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary);
      background:transparent;
    }
    .accordion-button::after{
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23c98b4f' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='m3 6 5 5 5-5'/%3E%3C/svg%3E");
      width:16px;
      height:16px;
      background-size:16px 16px;
      transition:transform .22s var(--ease);
    }
    .accordion-button:not(.collapsed)::after{
      transform:rotate(180deg);
    }
    .accordion-body{
      padding:0 0 18px;
      color:var(--text-soft);
      line-height:1.9;
      font-size:15px;
    }
    .accordion-item:has(.accordion-button:not(.collapsed)){
      position:relative;
    }
    .accordion-item:has(.accordion-button:not(.collapsed))::before{
      content:"";
      position:absolute;
      left:-14px;
      top:18px;
      bottom:18px;
      width:3px;
      border-radius:999px;
      background:var(--primary);
    }
    .contact-shell{
      border-radius:34px;
      overflow:hidden;
      background:linear-gradient(135deg, #2b1022 0%, #171116 100%);
      color:var(--text-inverse);
      box-shadow:var(--shadow-deep);
      border:1px solid rgba(255,255,255,.06);
    }
    .contact-copy{
      padding:38px;
    }
    .contact-copy h2{
      color:#fff;
      margin-bottom:14px;
    }
    .contact-copy p{
      color:rgba(247,237,231,.74);
      margin-bottom:18px;
    }
    .contact-points{
      display:grid;
      gap:12px;
      margin-top:24px;
    }
    .contact-point{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:16px 0;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .contact-point:first-child{border-top:none;padding-top:0}
    .contact-point .mini{
      width:34px;
      height:34px;
      border-radius:12px;
      background:rgba(201,139,79,.12);
      color:#f3cfab;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      flex:0 0 auto;
    }
    .contact-point h3{
      margin:0 0 5px;
      font-size:16px;
      font-weight:800;
    }
    .contact-point p{
      margin:0;
      color:rgba(247,237,231,.68);
      font-size:14px;
      line-height:1.8;
    }
    .form-shell{
      background:linear-gradient(180deg, #fff 0%, #fcf7f2 100%);
      padding:34px;
      color:var(--text);
      height:100%;
    }
    .form-shell .form-label{
      font-size:13px;
      color:var(--text-soft);
      margin-bottom:8px;
      font-weight:700;
    }
    .form-control,.form-select,textarea.form-control{
      border-radius:16px;
      border:1px solid rgba(58,20,40,.10);
      background:#fff;
      color:var(--text);
      padding:13px 15px;
      box-shadow:none;
    }
    .form-control::placeholder,
    textarea::placeholder{
      color:#a38d98;
    }
    .form-control:focus,
    .form-select:focus,
    textarea:focus{
      border-color:rgba(178,58,91,.45);
      box-shadow:0 0 0 .25rem rgba(178,58,91,.10) !important;
    }
    .help-text{
      font-size:13px;
      color:var(--text-soft);
    }
    .footer-note{
      margin-top:12px;
      font-size:12px;
      color:rgba(247,237,231,.64);
    }
    .site-footer{
      background:
        radial-gradient(circle at 15% 0%, rgba(201,139,79,.12), transparent 20%),
        linear-gradient(180deg, #2b1022 0%, #171116 100%);
      color:var(--text-inverse);
      padding:70px 0 28px;
      margin-top:0;
      position:relative;
    }
    .footer-brand strong{
      display:block;
      font-size:18px;
      margin-bottom:12px;
      line-height:1.3;
    }
    .footer-brand p{
      margin:0;
      color:rgba(247,237,231,.72);
      max-width:36rem;
      font-size:14px;
      line-height:1.85;
    }
    .footer-title{
      font-size:14px;
      font-weight:800;
      margin-bottom:14px;
      color:#fff;
      letter-spacing:.04em;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(247,237,231,.72);
      font-size:14px;
      display:inline-flex;
      width:max-content;
    }
    .footer-links a:hover{color:#fff;transform:translateX(2px)}
    .footer-bottom{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:rgba(247,237,231,.62);
      font-size:13px;
    }
    .nav-link:focus-visible,
    .btn:focus-visible,
    .form-control:focus-visible,
    .accordion-button:focus-visible{
      outline:none;
      box-shadow:0 0 0 .28rem rgba(201,139,79,.32) !important;
    }
    .hero-kpis{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .hero-kpi{
      border-radius:18px;
      padding:14px 15px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
    }
    .hero-kpi strong{
      display:block;
      font-size:18px;
      color:#fff3eb;
      line-height:1.2;
    }
    .hero-kpi span{
      display:block;
      margin-top:5px;
      font-size:12px;
      color:rgba(247,237,231,.68);
      line-height:1.55;
    }
    .subtle-line{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(201,139,79,.38), transparent);
      margin:18px 0;
    }
    .stat-table{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      margin-top:18px;
    }
    .stat-card{
      border-radius:20px;
      padding:18px;
      background:#fff;
      border:1px solid rgba(58,20,40,.08);
      box-shadow:var(--shadow);
    }
    .stat-card strong{
      display:block;
      font-size:28px;
      line-height:1;
      color:var(--primary);
      margin-bottom:8px;
    }
    .stat-card span{
      display:block;
      font-size:13px;
      color:var(--text-soft);
      line-height:1.65;
    }
    .mini-legend{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .mini-legend .mini-chip{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.08);
      color:rgba(247,237,231,.90);
    }
    .section-dark{
      background:linear-gradient(180deg, rgba(23,17,22,.02) 0%, rgba(23,17,22,.00) 100%);
    }
    @media (max-width: 1199.98px){
      .hero-grid{grid-template-columns:1fr}
      .hero-visual{padding:0 32px 36px}
      .hero-copy{padding:44px 36px 26px}
      .hero-copy h1{max-width:16em}
      .mag-card.big,.mag-card.mid,.mag-card.midwide,.mag-card.wide,.mag-card.skinny{grid-column:span 6}
      .flow-row{grid-template-columns:repeat(2,minmax(0,1fr))}
      .compare-grid{grid-template-columns:1fr}
      .table-row{grid-template-columns:1fr}
      .stat-table{grid-template-columns:repeat(2,minmax(0,1fr))}
      .hero-kpis{grid-template-columns:1fr}
    }
    @media (max-width: 991.98px){
      .site-header .navbar{padding:12px 0}
      .navbar-collapse{
        background:linear-gradient(180deg, #2b1022 0%, #201018 100%);
        border-radius:22px;
        padding:16px;
        margin-top:14px;
        box-shadow:var(--shadow-deep);
      }
      .navbar .nav-link{
        color:rgba(247,237,231,.88);
        padding:12px 14px;
      }
      .navbar .nav-link.active,
      .navbar .nav-link:hover{
        background:rgba(255,255,255,.06);
        color:#fff;
      }
      .navbar .nav-link::after{left:16px;right:16px;bottom:8px}
      .btn-primary-custom{
        width:100%;
      }
      .hero-section{padding-top:20px}
      .hero-shell{border-radius:28px}
      .section{padding:68px 0}
      .mag-grid{gap:14px}
      .mag-card.big,.mag-card.mid,.mag-card.midwide,.mag-card.wide,.mag-card.skinny{grid-column:span 12}
      .funnel-step{grid-template-columns:1fr; gap:8px}
      .funnel-step .bar{max-width:none}
      .contact-copy,.form-shell{padding:28px}
      .topbar .container{flex-direction:column; align-items:flex-start}
    }
    @media (max-width: 767.98px){
      .brand-text strong{font-size:16px}
      .brand-mark{width:38px;height:38px;border-radius:12px}
      .hero-copy{padding:34px 22px 20px}
      .hero-visual{padding:0 22px 24px}
      .hero-copy h1{font-size:clamp(32px, 8vw, 38px)}
      .hero-copy .lead{font-size:15px}
      .hero-actions{flex-direction:column}
      .hero-actions .btn{width:100%}
      .trust-row{gap:8px}
      .trust-pill{width:100%;justify-content:space-between}
      .hero-kpis,.stat-table{grid-template-columns:1fr}
      .flow-row{grid-template-columns:1fr}
      .metric-grid{grid-template-columns:1fr}
      .section{padding:56px 0}
      .section-title h2{font-size:clamp(24px, 7vw, 32px)}
      .mag-title{font-size:21px}
      .panel-card,.flow-shell,.faq-shell,.info-panel,.benefit-card,.compare-card{border-radius:24px}
      .topbar{font-size:12px}
      .topbar-right{display:none}
      .footer-bottom{flex-direction:column}
      .contact-shell{border-radius:28px}
      .contact-copy,.form-shell{padding:24px}
    }
    @media (max-width: 575.98px){
      .topbar .tag{display:none}
      .site-header .navbar{padding:10px 0}
      .hero-shell{border-radius:24px}
      .note-strip{padding:12px 14px}
      .note-strip .mini-chip{width:100%; justify-content:center}
      .mag-card,.flow-shell,.faq-shell,.info-panel,.compare-card,.benefit-card{padding:20px}
      .comparison-band{flex-direction:column}
      .funnel{padding:20px}
      .accordion-button{font-size:15px}
    }
