
    /* ==========================================================
      XAYSI PAGE SYSTEM (SCOPED) — MATCHES YOUR "LAST BEST" STYLE
      - WPBakery-safe (no html/head/body)
      - No external CDN (no FontAwesome)
      - Scoped: won't affect header/footer/other pages
    =========================================================== */

    .xaysi-page{
      --gold:#D4AF37;
      --gold-light:#F4E4A6;
      --gold-dark:#B8860B;
      --grey-dark:#2C2C2C;
      --grey-medium:#4A4A4A;
      --grey-light:#F5F5F5;
      --grey-bg:#F9F9F9;
      --white:#FFFFFF;
      --text-dark:#333333;
      --text-light:#666666;

      --shadow:0 8px 26px rgba(0,0,0,0.07);
      --shadow-lg:0 14px 32px rgba(0,0,0,0.12);
      --transition:all .28s ease;

      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color:var(--text-dark);
      background:var(--grey-bg);
      line-height:1.7;
    }

    .xaysi-page *{ box-sizing:border-box; }
    .xaysi-page img{ max-width:100%; height:auto; }

    .xaysi-page .container{
      max-width:1200px;
      margin:0 auto;
      padding:0 18px;
    }

    /* tighter sections (match your final code) */
    .xaysi-page section{ padding:70px 0; }

    /* ============ HERO (same diagonal overlay + soft lights) ============ */
    .xaysi-page .hero{
      position:relative;
      overflow:hidden;
      border-radius:16px;
      margin:0 0 24px;
      padding:80px 0 55px;
      color:var(--white);
      background:linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
    }

    .xaysi-page .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg,
          rgba(212,175,55,.22) 0%,
          rgba(212,175,55,.12) 35%,
          rgba(0,0,0,0) 36%,
          rgba(0,0,0,0) 100%
        ),
        radial-gradient(780px 420px at 10% 10%, rgba(212,175,55,.20), transparent 60%),
        radial-gradient(700px 360px at 92% 20%, rgba(244,228,166,.14), transparent 55%);
      pointer-events:none;
    }

    .xaysi-page .hero-content{
      position:relative;
      z-index:1;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:34px;
    }

    .xaysi-page .hero-text{ flex:1; min-width:280px; }

    .xaysi-page .hero-title{
      margin:0 0 12px;
      font-weight:800;
      line-height:1.15;
      font-size:52px;
      background:linear-gradient(90deg,var(--white),var(--gold-light));
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .xaysi-page .hero-subtitle{
      margin:0 0 12px;
      font-weight:650;
      color:var(--gold-light);
      line-height:1.55;
      font-size:20px;
      max-width:760px;
    }

    .xaysi-page .hero-desc{
      margin:0;
      color:rgba(255,255,255,.88);
      font-size:16px;
      max-width:820px;
    }

    /* Right hero panel (same shimmer) */
    .xaysi-page .hero-panel{
      flex:0 0 440px;
      background:rgba(255,255,255,.96);
      border-radius:20px;
      padding:28px;
      border:2px solid rgba(244,228,166,.85);
      box-shadow:var(--shadow-lg);
      text-align:center;
      position:relative;
      overflow:hidden;
    }

    .xaysi-page .hero-panel::after{
      content:"";
      position:absolute;
      inset:-40%;
      background:linear-gradient(120deg, transparent 40%, rgba(212,175,55,.14) 50%, transparent 60%);
      transform:translateX(-60%);
      animation:xaysiShimmer 6.2s linear infinite;
      pointer-events:none;
    }

    @keyframes xaysiShimmer{
      0%{ transform:translateX(-60%); }
      100%{ transform:translateX(60%); }
    }

    .xaysi-page .panel-title{
      margin:0 0 12px;
      font-size:18px;
      color:var(--grey-dark);
      font-weight:800;
      position:relative;
      z-index:1;
    }

    /* search (same control style) */
    .xaysi-page .search{
      position:relative;
      margin:0 0 14px;
      text-align:left;
      z-index:1;
    }

    .xaysi-page .search input{
      width:100%;
      border:1px solid rgba(0,0,0,.10);
      border-radius:999px;
      padding:12px 120px 12px 14px;
      background:#fff;
      outline:none;
      transition:box-shadow .2s ease, border-color .2s ease;
      font-size:14px;
    }

    .xaysi-page .search input:focus{
      border-color:rgba(212,175,55,.55);
      box-shadow:0 0 0 4px rgba(212,175,55,.14);
    }

    .xaysi-page .search button{
      position:absolute;
      right:6px;
      top:6px;
      border:none;
      background:var(--gold);
      color:var(--grey-dark);
      border-radius:999px;
      padding:10px 14px;
      font-weight:800;
      cursor:pointer;
      transition:var(--transition);
      display:inline-flex;
      align-items:center;
      gap:8px;
    }

    .xaysi-page .search button:hover{
      background:var(--gold-dark);
      color:#fff;
      transform:translateY(-1px);
    }

    .xaysi-page .search button svg{
      width:16px;
      height:16px;
      stroke:currentColor;
      stroke-width:3;
      fill:none;
    }

    .xaysi-page .quick-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:center;
      position:relative;
      z-index:1;
    }

    .xaysi-page .quick-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--grey-light);
      color:var(--text-dark);
      padding:10px 14px;
      border-radius:999px;
      text-decoration:none;
      font-weight:800;
      font-size:13px;
      transition:var(--transition);
      border:1px solid rgba(0,0,0,.06);
    }

    .xaysi-page .quick-link:hover{
      background:var(--gold);
      color:var(--grey-dark);
      transform:translateY(-2px);
      box-shadow:0 10px 22px rgba(212,175,55,.18);
      border-color:rgba(212,175,55,.25);
    }

    /* ============ SECTION TITLES (same system) ============ */
    .xaysi-page .section-title{
      text-align:center;
      font-size:30px;
      margin:0 0 40px;
      color:var(--grey-dark);
      font-weight:800;
      line-height:1.25;
      position:relative;
    }

    .xaysi-page .section-title:after{
      content:"";
      display:block;
      width:110px;
      height:6px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
      margin:14px auto 0;
      border-radius:3px;
    }

    .xaysi-page .section-subtitle{
      text-align:center;
      max-width:920px;
      margin:-26px auto 34px;
      color:var(--text-light);
      font-size:14px;
      line-height:1.7;
    }

    /* ============ INTRO ============ */
    .xaysi-page .intro{ background:var(--white); }

    .xaysi-page .intro-wrap{
      max-width:1000px;
      margin:0 auto;
      text-align:center;
    }

    .xaysi-page .intro-text{
      margin:0 auto;
      max-width:980px;
      color:var(--text-dark);
      font-size:14px;
      line-height:1.9;
    }
    .xaysi-page .intro-text p{ margin:0 0 14px; }
    .xaysi-page .intro-text p:last-child{ margin-bottom:0; }

    .xaysi-page .highlight{
      margin:22px auto 0;
      max-width:980px;
      border-radius:20px;
      padding:22px;
      background:linear-gradient(135deg,var(--gold-light) 0%, var(--gold) 100%);
      color:var(--grey-dark);
      box-shadow:var(--shadow);
      text-align:left;
    }

    .xaysi-page .highlight h3{
      margin:0 0 8px;
      font-size:18px;
      font-weight:900;
    }

    .xaysi-page .highlight p{
      margin:0;
      font-size:14px;
      line-height:1.7;
      font-weight:650;
    }

    /* ============ STEPS (your detail system) ============ */
    .xaysi-page .detail-title{
      font-size:22px;
      margin:52px 0 18px;
      color:var(--grey-dark);
      text-align:center;
      font-weight:900;
    }

    .xaysi-page .detail-title::after{
      content:"";
      display:block;
      width:110px;
      height:4px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
      margin:14px auto 0;
      border-radius:3px;
    }

    .xaysi-page .detail-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:26px;
      max-width:1100px;
      margin:0 auto;
    }

    .xaysi-page .detail{
      background:#fff;
      border-radius:18px;
      padding:34px 26px;
      box-shadow:var(--shadow);
      transition:var(--transition);
      border:1px solid #eaeaea;
      position:relative;
      overflow:hidden;
    }

    .xaysi-page .detail::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:6px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
    }

    .xaysi-page .detail:hover{
      transform:translateY(-8px);
      box-shadow:var(--shadow-lg);
      border-color:rgba(212,175,55,.35);
    }

    .xaysi-page .step-chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:999px;
      margin:0 auto 10px;
      font-weight:900;
      color:var(--grey-dark);
      background:linear-gradient(135deg,var(--gold-light),var(--gold));
      box-shadow:0 10px 22px rgba(212,175,55,.14);
      border:2px solid rgba(244,228,166,.8);
    }

    .xaysi-page .detail h3{
      margin:0 0 10px;
      font-size:18px;
      font-weight:900;
      color:var(--grey-dark);
      text-align:center;
      line-height:1.25;
    }

    .xaysi-page .detail p{
      margin:0 0 10px;
      font-size:14px;
      color:var(--text-light);
      line-height:1.7;
      text-align:center;
    }

    .xaysi-page .tips{
      list-style:none;
      margin:12px 0 0;
      padding:0;
    }

    .xaysi-page .tips li{
      position:relative;
      padding:10px 0 10px 34px;
      font-size:14px;
      color:var(--text-light);
      line-height:1.6;
    }

    .xaysi-page .tips li::before{
      content:"•";
      position:absolute;
      left:12px;
      top:8px;
      color:var(--gold);
      font-size:18px;
      font-weight:900;
    }

    /* ============ CTA (same vibe) ============ */
    .xaysi-page .cta{
      background:linear-gradient(135deg, var(--grey-dark) 0%, var(--grey-medium) 100%);
      color:var(--white);
      border-radius:16px;
      overflow:hidden;
      position:relative;
      margin:24px 0 0;
    }

    .xaysi-page .cta::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(212,175,55,.18), transparent 55%),
        radial-gradient(700px 360px at 20% 10%, rgba(244,228,166,.12), transparent 55%);
      pointer-events:none;
    }

    .xaysi-page .cta-inner{
      position:relative;
      z-index:1;
      padding:52px 22px;
      text-align:center;
    }

    .xaysi-page .cta-inner h2{
      margin:0 0 10px;
      font-size:28px;
      font-weight:900;
      background:linear-gradient(90deg,var(--white),var(--gold-light));
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .xaysi-page .cta-inner p{
      margin:0 auto 0;
      max-width:820px;
      color:rgba(255,255,255,.88);
      font-size:14px;
      line-height:1.8;
    }

    .xaysi-page .cta-buttons{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:center;
      margin-top:16px;
    }

    .xaysi-page .cta-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      font-weight:900;
      font-size:13px;
      text-decoration:none;
      transition:var(--transition);
      border:2px solid rgba(244,228,166,.6);
      background:var(--gold);
      color:var(--grey-dark);
      box-shadow:0 10px 22px rgba(212,175,55,.14);
    }

    .xaysi-page .cta-btn:hover{
      transform:translateY(-2px);
      background:var(--gold-dark);
      color:#fff;
      border-color:rgba(244,228,166,.85);
    }

    .xaysi-page .cta-btn.secondary{
      background:transparent;
      color:#fff;
      border-color:rgba(244,228,166,.55);
      box-shadow:none;
    }

    .xaysi-page .cta-btn.secondary:hover{
      background:rgba(212,175,55,.18);
      color:#fff;
    }

    .xaysi-page .cta-btn svg{
      width:16px;
      height:16px;
      stroke:currentColor;
      stroke-width:3;
      fill:none;
    }

    /* ============ RESPONSIVE (same breakpoints) ============ */
    @media (max-width: 992px){
      .xaysi-page .hero-content{ flex-direction:column; text-align:center; }
      .xaysi-page .hero-panel{ flex:0 0 auto; width:100%; max-width:520px; }
      .xaysi-page .search{ text-align:left; }
    }

    @media (max-width: 768px){
      .xaysi-page section{ padding:58px 0; }
      .xaysi-page .hero{ padding:64px 0 44px; }
      .xaysi-page .hero-title{ font-size:40px; }
      .xaysi-page .section-title{ font-size:24px; margin-bottom:32px; }
      .xaysi-page .detail{ padding:30px 22px; }
    }

    @media (max-width: 480px){
      .xaysi-page .container{ padding:0 14px; }
      .xaysi-page .hero-title{ font-size:34px; }
      .xaysi-page .hero-subtitle{ font-size:18px; }
    }
  