/* roulang page: index */
:root{
      --brand:#e9432f;
      --brand-dark:#c82c1d;
      --brand-soft:#fff0ec;
      --accent:#ff8a2a;
      --accent-soft:#fff5e8;
      --ink:#221b18;
      --muted:#746761;
      --weak:#a49892;
      --line:#f0ded4;
      --paper:#fffaf6;
      --card:#ffffff;
      --warm:#fff7ef;
      --success:#24a06a;
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:28px;
      --shadow:0 14px 38px rgba(128,50,24,.10);
      --shadow-hover:0 18px 48px rgba(128,50,24,.16);
      --container:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 2%, rgba(255,138,42,.13), transparent 30%),
        radial-gradient(circle at 92% 8%, rgba(233,67,47,.11), transparent 28%),
        var(--paper);
      line-height:1.72;
      -webkit-font-smoothing:antialiased;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    a:hover{color:var(--brand)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    .site-container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,250,246,.94);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(240,222,212,.86);
      box-shadow:0 10px 26px rgba(96,45,18,.05);
    }
    .topbar{
      display:grid;
      grid-template-columns:auto minmax(260px,1fr) auto;
      align-items:center;
      gap:18px;
      min-height:74px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      letter-spacing:-.03em;
      color:var(--ink);
      white-space:nowrap;
      font-size:22px;
    }
    .brand-mark{
      width:40px;
      height:40px;
      display:grid;
      place-items:center;
      border-radius:14px;
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      box-shadow:0 10px 24px rgba(233,67,47,.22);
      font-size:18px;
    }
    .search-wrap{
      display:flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fff;
      box-shadow:0 8px 22px rgba(91,41,17,.05);
    }
    .search-wrap span{color:var(--weak);font-size:15px}
    .search-wrap input{
      width:100%;
      border:0;
      outline:0;
      box-shadow:none;
      margin:0;
      height:28px;
      color:var(--ink);
      background:transparent;
    }
    .search-wrap input:focus{box-shadow:none;border:0}
    .header-actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 18px;
      border-radius:14px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1;
      transition:.22s ease;
      box-shadow:none;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--brand),var(--accent));
      color:#fff;
      box-shadow:0 12px 24px rgba(233,67,47,.22);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(233,67,47,.3);
    }
    .btn-secondary{
      background:#fff;
      border-color:var(--line);
      color:var(--brand-dark);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      border-color:#f2b198;
      background:var(--brand-soft);
      color:var(--brand-dark);
      transform:translateY(-2px);
    }
    .btn-ghost{
      background:rgba(255,255,255,.72);
      border-color:rgba(255,255,255,.5);
      color:#fff;
    }
    .btn-ghost:hover{background:#fff;color:var(--brand)}
    .channel-row{
      border-top:1px solid rgba(240,222,212,.64);
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
    }
    .channel-tabs{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 0;
      min-width:max-content;
    }
    .channel-tabs a{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:9px 15px;
      border-radius:999px;
      color:#5f514b;
      background:rgba(255,255,255,.62);
      border:1px solid transparent;
      font-weight:750;
      font-size:14px;
    }
    .channel-tabs a:hover{
      color:var(--brand);
      border-color:#ffd0bf;
      background:#fff;
    }
    .channel-tabs a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      box-shadow:0 10px 22px rgba(233,67,47,.2);
    }
    main{overflow:hidden}
    section{padding:70px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:var(--brand-soft);
      color:var(--brand-dark);
      font-size:13px;
      font-weight:850;
      margin-bottom:14px;
    }
    .section-title{
      font-size:clamp(28px,4vw,46px);
      line-height:1.16;
      letter-spacing:-.04em;
      margin:0 0 16px;
      font-weight:950;
    }
    .section-desc{
      max-width:760px;
      margin:0;
      color:var(--muted);
      font-size:17px;
    }
    .hero{
      padding:46px 0 38px;
    }
    .hero-stage{
      position:relative;
      border-radius:34px;
      overflow:hidden;
      min-height:560px;
      background:
        linear-gradient(100deg,rgba(42,24,18,.82),rgba(151,41,27,.62)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1300' height='650' viewBox='0 0 1300 650'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23fff3e8'/%3E%3Cstop offset='1' stop-color='%23ffad64'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1300' height='650' fill='url(/%23g)'/%3E%3Ccircle cx='1040' cy='120' r='210' fill='%23fff' opacity='.25'/%3E%3Ccircle cx='240' cy='520' r='190' fill='%23e9432f' opacity='.18'/%3E%3Cpath d='M0 430 C260 335 490 570 760 430 S1100 250 1300 330 V650 H0Z' fill='%23ffffff' opacity='.23'/%3E%3C/svg%3E") center/cover;
      box-shadow:var(--shadow);
    }
    .hero-inner{
      min-height:560px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      align-items:end;
      gap:28px;
      padding:54px;
      color:#fff;
    }
    .hero-copy{
      max-width:680px;
      padding-bottom:12px;
    }
    .hero-copy .eyebrow{
      display:inline-flex;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.26);
      margin-bottom:18px;
      font-weight:850;
    }
    h1{
      font-size:clamp(38px,6.2vw,72px);
      line-height:1.02;
      letter-spacing:-.06em;
      margin:0 0 20px;
      font-weight:1000;
    }
    .hero-copy p{
      max-width:650px;
      margin:0 0 24px;
      font-size:18px;
      color:rgba(255,255,255,.88);
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:22px}
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .hero-points span{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      font-weight:750;
      font-size:14px;
    }
    .booking-panel{
      align-self:center;
      background:rgba(255,255,255,.94);
      color:var(--ink);
      border-radius:26px;
      padding:24px;
      box-shadow:0 20px 60px rgba(48,17,8,.26);
      border:1px solid rgba(255,255,255,.56);
    }
    .booking-panel h2{
      margin:0 0 8px;
      font-size:24px;
      font-weight:950;
      letter-spacing:-.03em;
    }
    .booking-panel p{
      margin:0 0 18px;
      color:var(--muted);
      font-size:15px;
    }
    .time-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
      margin-bottom:16px;
    }
    .time-chip{
      display:flex;
      justify-content:space-between;
      align-items:center;
      min-height:58px;
      padding:12px;
      border:1px solid var(--line);
      border-radius:16px;
      background:var(--warm);
      transition:.22s ease;
    }
    .time-chip strong{font-size:15px}
    .time-chip small{color:var(--brand);font-weight:800}
    .time-chip:hover{
      transform:translateY(-2px);
      border-color:#ffc4ae;
      box-shadow:0 12px 28px rgba(233,67,47,.12);
    }
    .pain-strip{
      padding:28px 0 70px;
    }
    .pain-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .question-card{
      position:relative;
      min-height:130px;
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 28px rgba(98,42,17,.06);
      transition:.22s ease;
    }
    .question-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:#ffc9b7;
    }
    .question-card .mark{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:12px;
      background:var(--brand-soft);
      color:var(--brand);
      font-weight:950;
      margin-bottom:12px;
    }
    .question-card h3{
      margin:0;
      font-size:18px;
      line-height:1.36;
      font-weight:900;
    }
    .seed-section{
      background:linear-gradient(180deg,rgba(255,246,239,.64),rgba(255,250,246,0));
    }
    .seed-layout{
      display:grid;
      grid-template-columns:.88fr 1.12fr;
      gap:28px;
      align-items:center;
    }
    .vertical-stack{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      transform:rotate(-1deg);
    }
    .story-card{
      min-height:310px;
      border-radius:28px;
      padding:18px;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      background:linear-gradient(160deg,var(--brand),var(--accent));
      box-shadow:var(--shadow);
      transition:.22s ease;
    }
    .story-card:nth-child(2){
      margin-top:34px;
      background:linear-gradient(160deg,#2d211d,#ef6a28);
    }
    .story-card:nth-child(3){
      margin-top:10px;
      background:linear-gradient(160deg,#ff9c39,#e9432f);
    }
    .story-card:hover{transform:translateY(-5px) rotate(1deg);box-shadow:var(--shadow-hover)}
    .story-card .tag{
      align-self:flex-start;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.2);
      border:1px solid rgba(255,255,255,.24);
      font-size:12px;
      font-weight:850;
    }
    .story-card h3{
      margin:0;
      font-size:22px;
      line-height:1.22;
      font-weight:950;
    }
    .story-card p{margin:8px 0 0;color:rgba(255,255,255,.82)}
    .feature-list{
      display:grid;
      gap:12px;
      margin-top:24px;
    }
    .feature-item{
      display:flex;
      gap:13px;
      padding:16px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
    }
    .feature-item b{
      width:34px;
      height:34px;
      flex:0 0 34px;
      display:grid;
      place-items:center;
      border-radius:12px;
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
    }
    .feature-item h3{margin:0 0 4px;font-size:18px;font-weight:900}
    .feature-item p{margin:0;color:var(--muted)}
    .plans-section{padding-top:56px}
    .plans-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:24px;
    }
    .plans-grid{
      display:grid;
      grid-template-columns:1fr 1.12fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .plan-card{
      position:relative;
      border-radius:24px;
      padding:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      transition:.22s ease;
    }
    .plan-card.featured{
      background:linear-gradient(180deg,#fff,#fff5ed);
      border-color:#ffba9f;
      transform:translateY(-12px);
    }
    .plan-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
    .plan-card.featured:hover{transform:translateY(-16px)}
    .badge{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:var(--brand-soft);
      color:var(--brand-dark);
      font-size:12px;
      font-weight:900;
      margin-bottom:14px;
    }
    .plan-card h3{margin:0 0 12px;font-size:24px;font-weight:950}
    .price{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin-bottom:14px;
      color:var(--brand);
    }
    .price strong{font-size:42px;line-height:1;font-weight:1000;letter-spacing:-.05em}
    .price span{color:var(--muted);font-weight:800}
    .plan-card ul{
      margin:0 0 20px;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
      color:var(--muted);
    }
    .plan-card li::before{
      content:"✓";
      color:var(--success);
      font-weight:950;
      margin-right:8px;
    }
    .shield-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      padding-top:16px;
      margin-top:16px;
      border-top:1px dashed var(--line);
    }
    .shield-row span{
      padding:6px 9px;
      border-radius:999px;
      background:#fff7f1;
      color:#7c5545;
      font-size:12px;
      font-weight:800;
    }
    .stats-band{
      padding:54px 0;
    }
    .stats-box{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      padding:18px;
      border-radius:28px;
      background:linear-gradient(135deg,#2b1f1b,#743323);
      color:#fff;
      box-shadow:var(--shadow);
    }
    .stat{
      padding:22px;
      border-radius:20px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .stat strong{
      display:block;
      font-size:42px;
      line-height:1;
      font-weight:1000;
      letter-spacing:-.04em;
      margin-bottom:8px;
      color:#ffd09b;
    }
    .stat span{color:rgba(255,255,255,.78);font-weight:750}
    .hot-section{
      background:linear-gradient(180deg,rgba(255,242,232,.74),rgba(255,250,246,.4));
    }
    .hot-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      margin-top:28px;
    }
    .hot-main{
      min-height:410px;
      padding:28px;
      border-radius:30px;
      color:#fff;
      background:
        linear-gradient(135deg,rgba(233,67,47,.94),rgba(255,138,42,.86)),
        radial-gradient(circle at 80% 15%,rgba(255,255,255,.35),transparent 28%);
      box-shadow:var(--shadow);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .hot-main h3{font-size:34px;line-height:1.15;margin:0 0 12px;font-weight:950}
    .hot-main p{max-width:570px;color:rgba(255,255,255,.86);margin:0}
    .hot-tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
    .hot-tag-row span{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.24);
      font-weight:850;
      font-size:13px;
    }
    .hot-side{
      display:grid;
      gap:14px;
    }
    .hot-mini{
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 26px rgba(96,42,17,.06);
      transition:.22s ease;
    }
    .hot-mini:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .hot-mini h3{margin:8px 0 8px;font-size:21px;font-weight:950}
    .hot-mini p{margin:0;color:var(--muted)}
    .reviews-wall{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
      margin-top:28px;
    }
    .review-card{
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 30px rgba(96,42,17,.06);
    }
    .review-card .stars{color:#ff9b24;font-weight:950;letter-spacing:2px;margin-bottom:10px}
    .review-card p{margin:0 0 16px;color:#5f514b}
    .reviewer{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-weight:800;
    }
    .avatar{
      width:38px;height:38px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--brand-soft);color:var(--brand);font-weight:950;
    }
    .insights-section{
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .insights-layout{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:24px;
      margin-top:28px;
    }
    .article-list{
      display:grid;
      gap:12px;
    }
    .article-link{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:17px;
      border-radius:20px;
      border:1px solid var(--line);
      background:var(--paper);
      transition:.22s ease;
    }
    .article-link:hover{
      transform:translateX(4px);
      border-color:#ffc6b2;
      background:#fff;
      box-shadow:0 10px 24px rgba(96,42,17,.07);
    }
    .article-index{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      font-weight:950;
    }
    .article-link h3{margin:0 0 4px;font-size:18px;font-weight:950}
    .article-link p{margin:0;color:var(--muted);font-size:14px}
    .article-date{color:var(--weak);font-weight:800;font-size:13px;white-space:nowrap}
    .recommend-box,.quote-box,.calendar-box{
      border-radius:24px;
      padding:22px;
      background:linear-gradient(180deg,#fff7ef,#fff);
      border:1px solid var(--line);
      box-shadow:0 10px 28px rgba(96,42,17,.06);
    }
    .quote-box{
      margin-top:14px;
      background:#2b1f1b;
      color:#fff;
    }
    .quote-box p{color:rgba(255,255,255,.82);margin:0}
    .recommend-box h3,.quote-box h3,.calendar-box h3{margin:0 0 12px;font-size:22px;font-weight:950}
    .mini-tags{display:flex;flex-wrap:wrap;gap:8px}
    .mini-tags span{
      padding:7px 10px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      color:var(--brand-dark);
      font-size:13px;
      font-weight:850;
    }
    .calendar-list{
      display:grid;
      gap:10px;
      margin-top:16px;
    }
    .calendar-item{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:12px;
      align-items:center;
      padding:12px;
      border-radius:18px;
      background:#fff;
      border:1px solid var(--line);
    }
    .date-pill{
      display:grid;
      place-items:center;
      min-height:48px;
      border-radius:14px;
      background:var(--brand-soft);
      color:var(--brand);
      font-weight:950;
      line-height:1.1;
      text-align:center;
    }
    .date-pill small{display:block;font-size:11px;color:var(--brand-dark)}
    .calendar-item strong{display:block;font-weight:950}
    .calendar-item span{color:var(--muted);font-size:14px}
    .benefit-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:28px;
    }
    .benefit-card{
      padding:20px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 10px 26px rgba(96,42,17,.05);
      transition:.22s ease;
    }
    .benefit-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .benefit-card .icon{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      color:#fff;
      font-size:20px;
      margin-bottom:12px;
    }
    .benefit-card h3{margin:0 0 8px;font-size:19px;font-weight:950}
    .benefit-card p{margin:0;color:var(--muted)}
    .lead-section{
      padding-top:52px;
    }
    .lead-box{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:center;
      border-radius:32px;
      padding:32px;
      background:linear-gradient(135deg,#fff,#fff2e9);
      border:1px solid #ffd6c3;
      box-shadow:var(--shadow);
    }
    .lead-form{
      display:grid;
      grid-template-columns:1fr 1fr auto;
      gap:12px;
      align-items:end;
      padding:18px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
    }
    .field label{
      display:block;
      font-weight:850;
      font-size:13px;
      color:var(--muted);
      margin-bottom:6px;
    }
    .field input{
      width:100%;
      height:46px;
      margin:0;
      border-radius:14px;
      border:1px solid var(--line);
      background:var(--paper);
      box-shadow:none;
      padding:0 13px;
    }
    .field input:focus{
      border-color:#ffad94;
      box-shadow:0 0 0 4px rgba(233,67,47,.12);
      background:#fff;
    }
    .privacy-note{
      margin-top:14px;
      color:var(--muted);
      font-size:14px;
    }
    .privacy-section{
      padding:34px 0 72px;
    }
    .privacy-card{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:20px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
    }
    .privacy-card b{
      width:40px;height:40px;flex:0 0 40px;
      display:grid;place-items:center;
      border-radius:14px;
      background:#edf9f3;
      color:var(--success);
      font-size:20px;
    }
    .privacy-card h2{margin:0 0 4px;font-size:20px;font-weight:950}
    .privacy-card p{margin:0;color:var(--muted)}
    .faq-section{
      background:linear-gradient(180deg,#fffaf6,#fff1e8);
    }
    .faq-wrap{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:28px;
      align-items:start;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 8px 24px rgba(96,42,17,.05);
    }
    .accordion-title{
      border:0!important;
      color:var(--ink);
      font-weight:950;
      font-size:17px;
      padding:18px 48px 18px 18px;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:var(--brand-soft);
      color:var(--brand-dark);
    }
    .accordion-content{
      border:0!important;
      padding:0 18px 18px;
      color:var(--muted);
      background:#fff;
    }
    .modal-card{
      border-radius:26px;
      overflow:hidden;
      border:0;
      box-shadow:0 28px 80px rgba(40,17,8,.28);
      padding:0;
    }
    .modal-head{
      padding:24px;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      color:#fff;
    }
    .modal-head h2{margin:0 0 6px;font-size:26px;font-weight:950}
    .modal-head p{margin:0;color:rgba(255,255,255,.86)}
    .modal-body{padding:24px;background:#fff}
    .modal-body .field{margin-bottom:14px}
    .close-button{color:#fff}
    .site-footer{
      background:#231915;
      color:#fff;
      padding:50px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .8fr .8fr .9fr;
      gap:24px;
      padding-bottom:32px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:22px;
      font-weight:950;
      margin-bottom:12px;
    }
    .footer-grid p{color:rgba(255,255,255,.68);margin:0}
    .footer-col h3{font-size:16px;font-weight:950;margin:0 0 12px;color:#ffd4b3}
    .footer-col a{
      display:block;
      color:rgba(255,255,255,.68);
      margin:8px 0;
      font-weight:700;
    }
    .footer-col a:hover{color:#fff;transform:translateX(3px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:22px;
      color:rgba(255,255,255,.54);
      font-size:14px;
    }
    .floating-cta{
      position:fixed;
      right:20px;
      bottom:20px;
      z-index:45;
      border-radius:18px;
    }
    @media (max-width:1024px){
      .topbar{grid-template-columns:1fr auto;gap:12px;padding:12px 0}
      .search-wrap{grid-column:1/-1;order:3}
      .hero-inner,.seed-layout,.hot-layout,.insights-layout,.lead-box,.faq-wrap{grid-template-columns:1fr}
      .hero-inner{padding:34px;align-items:center}
      .pain-grid,.benefit-grid,.stats-box{grid-template-columns:repeat(2,1fr)}
      .plans-grid{grid-template-columns:1fr}
      .plan-card.featured{transform:none}
      .plan-card.featured:hover{transform:translateY(-6px)}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
      .lead-form{grid-template-columns:1fr 1fr}
      .lead-form .btn{grid-column:1/-1}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 24px,var(--container))}
      section{padding:54px 0}
      .brand{font-size:19px}
      .brand-mark{width:36px;height:36px}
      .header-actions .btn-secondary{display:none}
      .header-actions .btn{padding:11px 13px;min-height:40px}
      .hero-stage{border-radius:24px;min-height:auto}
      .hero-inner{min-height:auto;padding:26px}
      .hero-actions .btn{width:100%}
      .time-grid{grid-template-columns:1fr}
      .vertical-stack{grid-template-columns:1fr;transform:none}
      .story-card,.story-card:nth-child(2),.story-card:nth-child(3){margin-top:0;min-height:220px}
      .plans-head{display:block}
      .reviews-wall{grid-template-columns:1fr}
      .article-link{grid-template-columns:auto 1fr}
      .article-date{grid-column:2}
      .benefit-grid,.pain-grid,.stats-box{grid-template-columns:1fr}
      .lead-form{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:block}
      .floating-cta{left:12px;right:12px;bottom:12px;width:auto}
      .floating-cta .btn{width:100%}
    }
    @media (max-width:520px){
      .topbar{grid-template-columns:1fr}
      .header-actions{justify-content:space-between}
      .section-title{font-size:30px}
      h1{font-size:42px}
      .booking-panel{padding:18px}
      .hot-main{min-height:320px;padding:22px}
      .hot-main h3{font-size:28px}
      .lead-box{padding:20px;border-radius:24px}
      .privacy-card{display:block}
      .privacy-card b{margin-bottom:12px}
    }

/* roulang page: category1 */
:root{
  --bg:#fcf7f1;
  --surface:#fffdfa;
  --surface-2:#fff6ee;
  --line:#eaded1;
  --text:#2c211b;
  --muted:#75655a;
  --brand:#d94b2b;
  --brand-2:#f08a24;
  --brand-3:#ffb15c;
  --success:#1f8a70;
  --shadow:0 14px 36px rgba(103,58,31,.10);
  --shadow-strong:0 18px 44px rgba(103,58,31,.16);
  --radius:18px;
  --radius-sm:14px;
  --radius-lg:26px;
  --container:1160px;
  --gap:24px;
  --gap-lg:32px;
  --focus:0 0 0 4px rgba(217,75,43,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,177,92,.18), transparent 30%),
    radial-gradient(circle at top right, rgba(217,75,43,.10), transparent 34%),
    var(--bg);
  line-height:1.7;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}
button{cursor:pointer}
::selection{background:rgba(217,75,43,.18)}
.site-container{
  width:min(calc(100% - 32px), var(--container));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(252,247,241,.88);
  border-bottom:1px solid rgba(234,222,209,.78);
}
.site-header.is-scrolled{
  box-shadow:0 10px 24px rgba(56,33,17,.06);
}
.topbar{
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 0 12px;
}
.brand,.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.02em;
  color:var(--text);
}
.brand:hover,.footer-brand:hover{color:var(--brand)}
.brand-mark{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 10px 20px rgba(217,75,43,.20);
  flex:none;
}
.brand span:last-child,.footer-brand span:last-child{
  font-size:1.04rem;
}
.search-wrap{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  min-width:240px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.9);
  box-shadow:0 6px 16px rgba(73,45,24,.04);
}
.search-wrap span{
  color:var(--muted);
  font-size:.92rem;
  white-space:nowrap;
}
.search-wrap input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:var(--text);
}
.search-wrap:focus-within{
  border-color:rgba(217,75,43,.36);
  box-shadow:var(--focus);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  border:0;
  border-radius:14px;
  padding:12px 18px;
  font-weight:700;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.btn:active{transform:translateY(0)}
.btn:focus-visible,input:focus-visible,textarea:focus-visible,a:focus-visible,button:focus-visible{outline:none;box-shadow:var(--focus)}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
}
.btn-secondary{
  color:var(--brand);
  background:#fff;
  border:1px solid rgba(217,75,43,.22);
}
.btn-secondary:hover{
  background:rgba(255,246,238,.98);
}
.btn-ghost{
  color:var(--text);
  background:#fff;
  border:1px solid var(--line);
}
.channel-row{
  padding:0 0 14px;
}
.channel-tabs{
  display:flex;
  gap:10px;
  align-items:center;
  overflow-x:auto;
  padding-bottom:4px;
  scrollbar-width:none;
}
.channel-tabs::-webkit-scrollbar{display:none}
.channel-tabs a{
  white-space:nowrap;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid transparent;
  background:rgba(255,255,255,.82);
  color:var(--muted);
  transition:all .18s ease;
  flex:none;
}
.channel-tabs a:hover{
  color:var(--brand);
  border-color:rgba(217,75,43,.18);
  box-shadow:0 8px 18px rgba(73,45,24,.06);
  transform:translateY(-1px);
}
.channel-tabs a.active{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 10px 22px rgba(217,75,43,.18);
}
main{
  display:block;
  padding:28px 0 58px;
}
.hero{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(38,26,20,.86), rgba(78,42,24,.72)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color:#fff;
  box-shadow:var(--shadow-strong);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(25,16,12,.56), rgba(25,16,12,.18));
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  padding:34px;
  min-height:520px;
  align-items:stretch;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:18px;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.14);
  color:#fff4e9;
  font-size:.93rem;
}
.hero h1{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.7rem);
  line-height:1.08;
  letter-spacing:-.02em;
}
.hero p{
  margin:0;
  max-width:640px;
  color:rgba(255,248,241,.92);
  font-size:1.03rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hero-actions .btn{
  padding:13px 18px;
}
.hero-actions .btn-primary{
  box-shadow:0 14px 24px rgba(217,75,43,.28);
}
.hero-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.meta-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}
.hero-panel{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,251,247,.95);
  color:var(--text);
  box-shadow:0 18px 30px rgba(50,28,17,.16);
}
.video-wrap{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  min-height:260px;
  background:
    linear-gradient(180deg, rgba(35,22,16,.18), rgba(35,22,16,.54)),
    url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.video-wrap .play-btn{
  position:absolute;
  inset:auto auto 18px 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  color:#fff;
  background:rgba(217,75,43,.95);
  box-shadow:0 16px 26px rgba(217,75,43,.24);
}
.section{
  margin-top:28px;
}
.section-card{
  background:rgba(255,255,255,.9);
  border:1px solid rgba(234,222,209,.9);
  border-radius:24px;
  box-shadow:0 12px 28px rgba(65,41,24,.06);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size:1.45rem;
  letter-spacing:-.01em;
}
.section-head p{
  margin:0;
  color:var(--muted);
}
.note-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(217,75,43,.09);
  color:var(--brand);
  font-weight:700;
  font-size:.92rem;
}
.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 8px 20px rgba(56,33,17,.05);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:rgba(217,75,43,.22);
}
.card-body{
  padding:22px;
}
.issue-list{
  display:grid;
  gap:14px;
}
.issue-item{
  display:flex;
  gap:12px;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg,#fff, #fff8f1);
  border:1px solid rgba(234,222,209,.85);
}
.issue-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  flex:none;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
}
.issue-item h3{
  margin:0 0 4px;
  font-size:1rem;
}
.issue-item p{
  margin:0;
  color:var(--muted);
  font-size:.96rem;
}
.plan-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
}
.plan-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:8px 12px;
  border-radius:999px;
  font-size:.88rem;
  color:#b23d22;
  background:#fff2ea;
  margin-bottom:12px;
}
.plan-price{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin:10px 0 12px;
}
.plan-price strong{
  font-size:2rem;
  color:var(--brand);
  line-height:1;
}
.plan-price span{
  color:var(--muted);
  font-size:.95rem;
}
.plan-features{
  display:grid;
  gap:10px;
  margin:0 0 18px;
  padding:0;
  list-style:none;
}
.plan-features li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text);
}
.plan-features i{
  color:var(--success);
  margin-top:4px;
}
.plan-actions{
  display:flex;
  gap:10px;
  margin-top:auto;
  flex-wrap:wrap;
}
.guarantee-row{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
.guarantee{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background:var(--surface-2);
  border:1px solid rgba(234,222,209,.9);
}
.guarantee i{
  color:var(--brand);
}
.stats{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.stat{
  padding:20px;
  border-radius:20px;
  background:linear-gradient(180deg,#fff, #fff8f2);
  border:1px solid rgba(234,222,209,.95);
}
.stat strong{
  display:block;
  font-size:2rem;
  line-height:1;
  color:var(--brand);
  margin-bottom:8px;
}
.stat span{
  color:var(--muted);
  font-size:.96rem;
}
.form-shell{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:18px;
  align-items:stretch;
}
.form-aside{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(217,75,43,.10), rgba(255,255,255,.96));
  border:1px solid rgba(217,75,43,.14);
}
.form-aside h3{
  margin:0 0 10px;
  font-size:1.28rem;
}
.form-aside p{
  margin:0 0 16px;
  color:var(--muted);
}
.form-points{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.form-points li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--text);
}
.form-points i{
  color:var(--brand);
  margin-top:4px;
}
.lead-form{
  padding:24px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
}
.lead-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field.full{grid-column:1/-1}
.field label{
  font-weight:700;
  color:var(--text);
}
.field input,.field textarea,.field select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  padding:13px 14px;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.field textarea{
  min-height:110px;
  resize:vertical;
}
.field input:focus,.field textarea:focus,.field select:focus{
  border-color:rgba(217,75,43,.34);
  box-shadow:var(--focus);
}
.form-foot{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  align-items:center;
}
.privacy{
  padding:18px 20px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(234,222,209,.95);
  color:var(--muted);
}
.privacy strong{
  color:var(--text);
}
.article-list{
  display:grid;
  gap:14px;
}
.article-card{
  display:grid;
  grid-template-columns:168px minmax(0,1fr);
  gap:16px;
  padding:14px;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--line);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.article-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
  border-color:rgba(217,75,43,.22);
}
.article-media{
  border-radius:16px;
  overflow:hidden;
  min-height:132px;
  background:linear-gradient(135deg, rgba(217,75,43,.92), rgba(240,138,36,.8));
  position:relative;
}
.article-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.28), transparent 26%),
    linear-gradient(180deg, rgba(38,24,17,.12), rgba(38,24,17,.26));
}
.article-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.84;
}
.article-body{
  padding:2px 2px 2px 0;
}
.article-body h3{
  margin:0 0 8px;
  font-size:1.06rem;
  line-height:1.35;
}
.article-body p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:.95rem;
}
.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  background:#fff4eb;
  color:#a84526;
  font-size:.84rem;
  font-weight:700;
}
.time{
  color:var(--muted);
  font-size:.86rem;
}
.sidebar{
  display:grid;
  gap:18px;
}
.side-box{
  padding:22px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--line);
}
.side-box h3{
  margin:0 0 12px;
  font-size:1.12rem;
}
.side-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.side-tags a{
  padding:9px 12px;
  border-radius:999px;
  background:var(--surface-2);
  color:var(--text);
  border:1px solid rgba(234,222,209,.9);
}
.side-tags a:hover{
  border-color:rgba(217,75,43,.22);
  color:var(--brand);
}
.faq{
  display:grid;
  gap:12px;
}
.accordion-item{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}
.accordion-title{
  padding:18px 20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-weight:700;
}
.accordion-title:hover{
  color:var(--brand);
  background:#fffaf6;
}
.accordion-content{
  display:none;
  padding:0 20px 18px;
  color:var(--muted);
}
.accordion-item.is-open .accordion-content{
  display:block;
}
.accordion-item.is-open .accordion-title i{
  transform:rotate(180deg);
}
.accordion-title i{
  transition:transform .18s ease;
}
.pagination-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-top:18px;
}
.page-btn{
  padding:12px 18px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--text);
}
.page-btn.primary{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
}
.page-btn:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}
.site-footer{
  margin-top:34px;
  border-top:1px solid rgba(234,222,209,.95);
  background:rgba(255,250,245,.84);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr .9fr;
  gap:20px;
  padding:28px 0 20px;
}
.footer-col h3{
  margin:0 0 12px;
  font-size:1rem;
}
.footer-col p{
  margin:12px 0 0;
  color:var(--muted);
}
.footer-col a{
  display:block;
  width:fit-content;
  color:var(--muted);
  margin-bottom:10px;
}
.footer-col a:hover{
  color:var(--brand);
}
.copyright{
  padding:16px 0 24px;
  border-top:1px solid rgba(234,222,209,.78);
  display:flex;
  justify-content:space-between;
  gap:14px;
  color:var(--muted);
  font-size:.92rem;
  flex-wrap:wrap;
}
.float-cta{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:45;
  display:none;
}
.float-cta .btn{
  box-shadow:0 14px 26px rgba(217,75,43,.24);
}
.reveal-card{
  transform:translateY(14px);
  opacity:0;
  transition:transform .5s ease, opacity .5s ease;
}
.reveal-card.is-visible{
  transform:translateY(0);
  opacity:1;
}
.modal-wrap{
  position:fixed;
  inset:0;
  z-index:60;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  background:rgba(31,21,16,.56);
}
.modal-wrap.is-open{display:flex}
.modal-panel{
  width:min(680px,100%);
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,.22);
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 22px;
  background:linear-gradient(135deg,#fff7f1,#fff);
  border-bottom:1px solid var(--line);
}
.modal-head h3{
  margin:0;
  font-size:1.12rem;
}
.modal-close{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
}
.modal-body{
  padding:22px;
}
.modal-body .lead-form{
  padding:0;
  border:0;
}
@media (max-width: 1024px){
  .hero-inner,.grid-2,.form-shell,.footer-grid{
    grid-template-columns:1fr;
  }
  .grid-4,.stats,.guarantee-row{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .topbar{
    flex-wrap:wrap;
  }
  .search-wrap{
    order:3;
    width:100%;
  }
}
@media (max-width: 768px){
  main{padding-top:22px}
  .hero-inner{padding:22px; min-height:auto}
  .hero{
    border-radius:24px;
  }
  .section{margin-top:20px}
  .card,.section-card,.side-box,.lead-form,.form-aside,.privacy{
    border-radius:20px;
  }
  .grid-3,.grid-4,.stats,.guarantee-row,.lead-grid{
    grid-template-columns:1fr;
  }
  .article-card{
    grid-template-columns:1fr;
  }
  .article-media{
    min-height:190px;
  }
  .header-actions{
    width:100%;
    justify-content:space-between;
  }
  .btn{
    width:auto;
  }
}
@media (max-width: 520px){
  .site-container{
    width:min(calc(100% - 22px), var(--container));
  }
  .topbar{
    padding:14px 0 10px;
  }
  .brand span:last-child{
    font-size:.98rem;
  }
  .hero h1{
    font-size:1.88rem;
  }
  .hero p{
    font-size:.98rem;
  }
  .hero-actions,.header-actions,.pagination-wrap{
    flex-direction:column;
    align-items:stretch;
  }
  .btn,.page-btn{
    width:100%;
  }
  .modal-panel{
    border-radius:20px;
  }
}
