:root{
      --bg0:#ffffff;
      --bg1:#fff6dd;
      --bg2:#fff1c4;
      --text:#16171a;
      --muted:#5b5f6b;
      --line:rgba(20,20,20,.10);
      --line2:rgba(20,20,20,.14);
      --card:#ffffff;
      --shadow:0 14px 40px rgba(20,18,10,.10);
      --shadow2:0 10px 26px rgba(20,18,10,.08);
      --accent:#ffcc00;
      --accent2:#ffb300;
      --accent3:#ffdd4d;
      --accent-ink:#261700;
      --accent-ink2:#3b2b00;
      --blue:#1f5bff;
      --focus:rgba(255,204,0,.35);
      --radius:16px;
      --radius2:22px;
      --max:1160px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 500px at 20% -10%, rgba(255,204,0,.18), transparent 55%),
        radial-gradient(900px 450px at 80% 0%, rgba(255,179,0,.14), transparent 55%),
        linear-gradient(180deg, #fff 0%, #fffaf0 35%, #ffffff 100%);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto; z-index:9999;
      background:#fff; padding:10px 12px; border:1px solid var(--line2); border-radius:12px;
      box-shadow: var(--shadow2);
      outline: none;
    }

    .container{max-width:var(--max); margin:0 auto; padding:0 18px;}
    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(20,20,20,.06);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:12px 0;
    }
    .brand{display:flex; align-items:center; gap:12px; min-width:240px;}
    .brand-link{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit;}
    .ai-page-logo{width:46px; height:auto; display:block;}
    .brand-meta{display:flex; flex-direction:column; line-height:1.1;}
    .brand-name{font-weight:880; letter-spacing:.2px; font-size:15px;}
    .brand-sub{color:var(--muted); font-size:12px; margin-top:3px;}

    .nav-desktop{display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:center;}
    .nav-item{
      text-decoration:none; color:rgba(20,20,20,.78);
      font-size:13px; padding:8px 10px; border-radius:12px; transition: background .2s, transform .2s;
      border:1px solid transparent;
    }
    .nav-item:hover{
      background:rgba(255,204,0,.16);
      border-color:rgba(255,204,0,.28);
      transform: translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:10px;}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:8px;
      border-radius:14px;
      padding:10px 14px;
      border:1px solid rgba(20,20,20,.14);
      background:#fff;
      color:rgba(20,20,20,.86);
      text-decoration:none;
      font-weight:750;
      font-size:13px;
      transition: transform .18s, box-shadow .18s, border-color .18s, background .18s;
      white-space:nowrap;
      cursor:pointer;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus);}
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2); border-color:rgba(20,20,20,.18);}

    .btn-ghost{background:rgba(255,255,255,.7); border-color:rgba(20,20,20,.12);}
    .btn-accent{
      background: linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%);
      border-color: rgba(255,176,0,.55);
      color:var(--accent-ink);
      box-shadow: 0 10px 22px rgba(255,188,0,.22);
    }
    .btn-accent:hover{box-shadow: 0 14px 28px rgba(255,188,0,.28); border-color: rgba(255,176,0,.75);}

    .btn-lg{padding:12px 16px; border-radius:16px; font-size:14px;}

    .btn-block{width:100%}

    .nav-toggle{
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(20,20,20,.14);
      background:#fff;
      display:none;
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s, box-shadow .18s;
    }
    .nav-toggle:focus{outline:none; box-shadow:0 0 0 4px var(--focus);}
    .nav-toggle:hover{transform: translateY(-1px); box-shadow: var(--shadow2);}
    .burger{
      width:18px; height:12px; display:block; position:relative;
    }
    .burger::before,.burger::after,.burger{
      background:transparent;
    }
    .burger::before,.burger::after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px; background:rgba(20,20,20,.8);
    }
    .burger::before{top:0}
    .burger::after{bottom:0}
    .burger{
      border-top:2px solid rgba(20,20,20,.8);
      border-bottom:2px solid rgba(20,20,20,.8);
    }

    .mobile-menu{
      position:fixed; inset:0; z-index:70;
      background:rgba(10,10,10,.28);
      opacity:0; pointer-events:none;
      transition: opacity .18s ease;
      display:flex; justify-content:flex-end;
    }
    .mobile-menu.open{opacity:1; pointer-events:auto;}
    .mobile-menu-inner{
      width:min(420px, 92vw);
      background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,252,240,.98) 100%);
      border-left:1px solid rgba(20,20,20,.12);
      padding:16px;
      transform: translateX(12px);
      transition: transform .18s ease;
      display:flex; flex-direction:column; gap:14px;
    }
    .mobile-menu.open .mobile-menu-inner{transform: translateX(0);}
    .mobile-menu-top{display:flex; align-items:center; justify-content:space-between; gap:10px;}
    .mobile-menu-title{font-weight:900; letter-spacing:.2px;}
    .icon-btn{
      width:40px; height:40px; border-radius:14px;
      border:1px solid rgba(20,20,20,.14);
      background:#fff; cursor:pointer;
      transition: transform .18s, box-shadow .18s;
    }
    .icon-btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2);}
    .mobile-menu-list{display:flex; flex-direction:column; gap:8px;}
    .mobile-link{
      text-decoration:none; color:rgba(20,20,20,.86);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px; border-radius:14px;
      font-weight:800; font-size:14px;
    }
    .mobile-link:focus{outline:none; box-shadow:0 0 0 4px var(--focus);}
    .mobile-menu-cta{margin-top:auto; display:flex; flex-direction:column; gap:10px;}
    .mobile-menu-foot{display:flex; flex-direction:column; gap:6px; padding:10px 0;}
    .muted{color:var(--muted); font-size:12px;}

    .hero{
      position:relative;
      padding:44px 0 18px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute; inset:-20% -20% -10% -20%;
      pointer-events:none;
    }
    .bg-ring{
      position:absolute;
      width:680px; height:680px;
      border-radius:50%;
      left:50%; top:20%;
      transform:translate(-70%, -50%);
      background: radial-gradient(circle at 40% 40%, rgba(255,204,0,.25), transparent 56%);
      filter: blur(0px);
      opacity:.9;
    }
    .bg-grid{
      position:absolute;
      width:1100px; height:680px;
      left:50%; top:0;
      transform: translateX(-25%);
      background:
        linear-gradient(transparent 95%, rgba(20,20,20,.06) 96%),
        linear-gradient(90deg, transparent 95%, rgba(20,20,20,.06) 96%);
      background-size: 34px 34px;
      border-radius: 40px;
      mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 58%);
      opacity:.45;
    }
    .bg-orbit{
      position:absolute;
      width:860px; height:240px;
      left:-10%; top:18%;
      transform: rotate(-10deg);
      border-radius: 50%;
      border:1px solid rgba(255,204,0,.25);
      background: radial-gradient(closest-side, rgba(255,204,0,.18), transparent 70%);
      opacity:.65;
    }

    .hero-grid{
      display:grid; grid-template-columns: 1.05fr .95fr;
      gap:22px; align-items:start;
    }

    .pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px;}
    .pill{
      display:inline-flex; align-items:center;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.25);
      color: rgba(38,23,0,.92);
      font-weight:850;
      font-size:12px;
    }
    .pill-outline{
      background: rgba(255,255,255,.7);
      border-color: rgba(20,20,20,.14);
      color: rgba(20,20,20,.82);
    }
    .pill-soft{
      background: rgba(255,221,77,.18);
      border-color: rgba(255,221,77,.30);
    }

    .hero-title{
      font-size:40px; line-height:1.1;
      letter-spacing:-.4px;
      margin:0;
      font-weight:950;
    }
    .hero-desc{
      margin:14px 0 18px;
      color: rgba(20,20,20,.72);
      font-size:15px; line-height:1.7;
      max-width:58ch;
    }

    .hero-ctas{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-bottom:18px;}
    .hero-badges{display:flex; gap:12px; flex-wrap:wrap; align-items:stretch; margin-top:8px;}

    .stat-badge{
      flex: 1 1 180px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,20,20,.10);
      border-radius: 18px;
      padding:12px 14px;
      box-shadow: 0 10px 25px rgba(20,18,10,.06);
    }
    .stat-num{font-weight:950; font-size:15px; letter-spacing:.2px;}
    .stat-sub{color:var(--muted); font-size:12px; margin-top:4px;}

    .hero-panel{
      background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,252,240,.98) 100%);
      border:1px solid rgba(255,204,0,.22);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .hero-panel::after{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(700px 240px at 20% 0%, rgba(255,204,0,.20), transparent 55%);
      pointer-events:none;
    }
    .hero-panel-top{position:relative; z-index:1;}
    .panel-title{font-weight:950; font-size:16px;}
    .panel-sub{color:var(--muted); font-size:12px; margin-top:6px;}

    .kpi-grid{
      position:relative; z-index:1;
      margin-top:12px;
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .kpi-card{
      border-radius:18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,20,20,.10);
      padding:12px;
      box-shadow: 0 12px 26px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .kpi-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 34px rgba(20,18,10,.10);
      border-color: rgba(255,204,0,.35);
    }
    .kpi-icon{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-size:16px;
      margin-bottom:8px;
    }
    .kpi-value{
      font-weight:1000;
      font-size:20px;
      letter-spacing:-.3px;
      margin-bottom:5px;
    }
    .kpi-label{color: rgba(20,20,20,.70); font-size:12px; line-height:1.4;}

    .hero-panel-bottom{
      position:relative; z-index:1;
      margin-top:14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      padding-top:12px;
      border-top:1px dashed rgba(20,20,20,.14);
    }

    .micro-list{display:flex; flex-direction:column; gap:10px; padding-right:8px;}
    .micro-item{
      display:flex; align-items:center; gap:10px;
      color: rgba(20,20,20,.78);
      font-size:13px;
    }
    .dot{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(180deg, rgba(255,204,0,.95) 0%, rgba(255,179,0,.95) 100%);
      box-shadow: 0 10px 18px rgba(255,188,0,.25);
    }
    .mini-link{
      color: rgba(20,20,20,.78);
      text-decoration:none;
      font-weight:850;
      white-space:nowrap;
      margin-top:2px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .mini-link:hover{transform: translateY(-1px); box-shadow: var(--shadow2); border-color: rgba(255,204,0,.35);}

    .section{padding:44px 0;}
    .section.about{padding-top:28px;}
    .section-head{margin-bottom:22px;}
    .section-head.split{display:flex; align-items:flex-end; justify-content:space-between; gap:16px;}
    .section-kicker{
      display:inline-flex; align-items:center;
      font-weight:950;
      font-size:12px;
      letter-spacing:.18em;
      color: rgba(38,23,0,.86);
      text-transform: uppercase;
      margin-bottom:10px;
    }
    .section-title{
      margin:0;
      font-size:28px;
      line-height:1.25;
      letter-spacing:-.2px;
      font-weight:950;
    }
    .section-desc{
      margin:12px 0 0;
      color: rgba(20,20,20,.72);
      line-height:1.8;
      font-size:14px;
      max-width:78ch;
    }
    .seg-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;}

    .features-grid{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:14px;
      margin-top:14px;
    }
    .feature-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,20,20,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 26px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
      min-height:180px;
    }
    .feature-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(20,18,10,.10);
      border-color: rgba(255,204,0,.35);
    }
    .feature-top{display:flex; align-items:center; gap:10px; margin-bottom:10px;}
    .feature-icon{
      width:40px; height:40px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-size:18px;
    }
    .feature-title{margin:0; font-size:16px; font-weight:950;}
    .feature-text{margin:0; color: rgba(20,20,20,.72); line-height:1.8; font-size:13px;}

    .callout{
      margin-top:18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      background: linear-gradient(90deg, rgba(255,204,0,.18), rgba(255,255,255,.78));
      border:1px solid rgba(255,204,0,.28);
      border-radius: 22px;
      padding:16px 16px;
      box-shadow: 0 16px 38px rgba(255,188,0,.12);
    }
    .callout-title{font-weight:1000; font-size:16px;}
    .callout-desc{color: rgba(20,20,20,.72); line-height:1.7; margin-top:8px; font-size:13px;}
    .callout-right{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;}

    .service-tags{
      display:flex; flex-wrap:wrap; gap:10px;
      margin:8px 0 18px;
    }
    .tag{
      appearance:none;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.7);
      padding:10px 12px;
      border-radius:999px;
      font-weight:850;
      font-size:13px;
      color: rgba(20,20,20,.80);
      cursor:pointer;
      transition: transform .18s, box-shadow .18s, border-color .18s, background .18s;
    }
    .tag:hover{transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(255,204,0,.35);}
    .tag.active{
      background: rgba(255,204,0,.18);
      border-color: rgba(255,204,0,.42);
      box-shadow: 0 16px 30px rgba(255,188,0,.12);
    }
    .service-panel{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,20,20,.10);
      border-radius: 22px;
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.06);
    }
    .panel-row{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px; margin-bottom:14px;}
    .panel-row.split-bottom{grid-template-columns: 1.2fr .8fr; margin-bottom:0;}
    .service-card{
      border-radius: var(--radius);
      padding:16px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.75);
      box-shadow: 0 12px 26px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(20,18,10,.10);
      border-color: rgba(255,204,0,.35);
    }
    .service-card-title{font-weight:1000; font-size:16px; margin-bottom:10px;}
    .service-card-desc{color: rgba(20,20,20,.72); line-height:1.8; font-size:13px; margin-bottom:12px;}
    .service-list{margin:0; padding-left:18px; display:flex; flex-direction:column; gap:8px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.7;}
    .service-card-bullets{display:flex; flex-direction:column; gap:10px; margin-bottom:10px;}
    .bullet{
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(20,20,20,.74); font-size:13px; line-height:1.7;
    }
    .bullet-ico{
      width:24px; height:24px; border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-weight:1000; color: rgba(38,23,0,.90);
      flex:0 0 auto;
    }
    .service-card.compact{padding:14px;}
    .mini-matrix{display:grid; grid-template-columns: 1fr; gap:10px; margin-top:10px;}
    .matrix-item{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.72);
    }
    .matrix-top{font-weight:950; font-size:13px;}
    .matrix-bottom{color: rgba(20,20,20,.72); margin-top:6px; font-size:12px; line-height:1.6;}
    .text-link{
      display:inline-flex; align-items:center; gap:8px;
      text-decoration:none;
      color: rgba(20,20,20,.84);
      font-weight:900;
      margin-top:8px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.6);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .text-link:hover{transform: translateY(-1px); box-shadow: var(--shadow2); border-color: rgba(255,204,0,.35);}

    .two-col{
      display:grid; grid-template-columns: .95fr 1.05fr; gap:16px; align-items:start;
    }
    .timeline{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.06);
    }
    .timeline-item{
      display:flex; gap:12px; padding:12px 0;
      border-bottom:1px dashed rgba(20,20,20,.14);
      align-items:flex-start;
    }
    .timeline-item:last-child{border-bottom:none; padding-bottom:2px;}
    .timeline-step{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      color: rgba(38,23,0,.92);
      flex:0 0 auto;
    }
    .timeline-title{font-weight:1000; font-size:15px;}
    .timeline-text{color: rgba(20,20,20,.72); margin-top:6px; font-size:13px; line-height:1.75;}
    .match-card{
      border-radius:22px;
      border:1px solid rgba(255,204,0,.22);
      background: linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,252,240,.98) 100%);
      padding:16px;
      box-shadow: var(--shadow);
    }
    .match-card-top .match-kicker{
      font-weight:950; color: rgba(38,23,0,.86); letter-spacing:.18em; text-transform: uppercase; font-size:12px;
    }
    .match-card-top .match-title{margin:10px 0 8px; font-size:20px; font-weight:1000; letter-spacing:-.2px;}
    .match-card-top .match-desc{color: rgba(20,20,20,.72); line-height:1.8; font-size:13px; margin:0;}
    .checklist{margin-top:14px; display:flex; flex-direction:column; gap:10px;}
    .check-item{
      display:flex; align-items:center; gap:10px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      color: rgba(20,20,20,.80);
      font-weight:850;
      font-size:13px;
    }
    .check-ico{
      width:28px; height:28px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      flex:0 0 auto;
    }
    .match-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}
    .fine-print{
      margin-top:12px;
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(20,20,20,.68);
      font-size:12px; line-height:1.6;
    }
    .fine-dot{
      width:10px; height:10px; border-radius:4px;
      background: rgba(255,204,0,.9);
      margin-top:5px;
      box-shadow: 0 10px 16px rgba(255,188,0,.22);
      flex:0 0 auto;
    }

    .industry-grid{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .industry-card{
      border-radius: var(--radius);
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 12px 26px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
      min-height:220px;
    }
    .industry-card:hover{transform: translateY(-3px); box-shadow: 0 18px 38px rgba(20,18,10,.10); border-color: rgba(255,204,0,.35);}
    .industry-top{display:flex; align-items:center; gap:10px; margin-bottom:10px;}
    .industry-ico{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-size:18px;
      flex:0 0 auto;
    }
    .industry-title{margin:0; font-weight:1000; font-size:16px;}
    .industry-list{margin:0; padding-left:18px; display:flex; flex-direction:column; gap:8px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.7;}
    .network{
      margin-top:16px;
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: linear-gradient(90deg, rgba(255,204,0,.12), rgba(255,255,255,.75));
      padding:16px;
      box-shadow: 0 14px 36px rgba(20,18,10,.05);
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
    }
    .network-title{margin:8px 0 0; font-size:18px; font-weight:1000;}
    .network-desc{margin-top:8px; color: rgba(20,20,20,.72); line-height:1.8; font-size:13px; max-width:56ch;}
    .network-right{min-width:320px;}
    .network-chips{display:flex; flex-wrap:wrap; gap:10px;}
    .chip{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.72);
      font-weight:900;
      font-size:12px;
      color: rgba(20,20,20,.80);
    }

    .cards-grid{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .case-card{
      border-radius: var(--radius);
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.75);
      padding:16px;
      box-shadow: 0 12px 26px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
      min-height:240px;
      display:flex; flex-direction:column; gap:10px;
    }
    .case-card:hover{transform: translateY(-3px); box-shadow: 0 18px 38px rgba(20,18,10,.10); border-color: rgba(255,204,0,.35);}
    .case-head{display:flex; align-items:center; justify-content:space-between; gap:10px;}
    .case-badge{
      padding:8px 10px; border-radius:999px;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-weight:1000; font-size:12px;
      color: rgba(38,23,0,.92);
    }
    .case-score{color: rgba(20,20,20,.72); font-size:12px; font-weight:900;}
    .case-title{margin:0; font-size:16px; font-weight:1000; letter-spacing:-.1px;}
    .case-desc{margin:0; color: rgba(20,20,20,.72); line-height:1.8; font-size:13px;}
    .case-meta{display:flex; gap:8px; flex-wrap:wrap; margin-top:auto;}
    .meta-pill{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      color: rgba(20,20,20,.74);
      font-size:12px;
      font-weight:900;
    }

    .article-row{
      margin-top:18px;
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
      padding:16px;
      display:grid; grid-template-columns: 0.9fr 1.1fr; gap:14px; align-items:start;
    }
    .article-title{margin:8px 0 6px; font-size:20px; font-weight:1000;}
    .article-desc{margin:0; color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}
    .article-list{display:flex; flex-direction:column; gap:10px;}
    .article-item{
      display:flex; gap:12px;
      text-decoration:none;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .article-item:hover{transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(255,204,0,.35);}
    .article-dot{
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(180deg, rgba(255,204,0,.95) 0%, rgba(255,179,0,.95) 100%);
      margin-top:4px;
      box-shadow: 0 10px 16px rgba(255,188,0,.22);
      flex:0 0 auto;
    }
    .article-name{font-weight:1000; font-size:13px; line-height:1.5; color: rgba(20,20,20,.86);}
    .article-meta{margin-top:6px; color: rgba(20,20,20,.64); font-size:12px; font-weight:800;}

    .compare-grid{
      display:grid; grid-template-columns: .9fr 1.1fr; gap:16px; align-items:start;
    }
    .rating-card{
      border-radius:22px;
      border:1px solid rgba(255,204,0,.24);
      background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,252,240,.98) 100%);
      padding:16px;
      box-shadow: var(--shadow);
      position:sticky;
      top:84px;
    }
    .rating-top{display:flex; flex-direction:column; gap:8px;}
    .stars{font-size:20px; letter-spacing:2px; color: rgba(255,172,0,.96);}
    .rating-label{font-weight:1000; color: rgba(38,23,0,.90); font-size:13px;}
    .rating-score{margin-top:14px;}
    .score-big{
      font-size:52px;
      font-weight:1100;
      letter-spacing:-.6px;
      line-height:1;
      color: rgba(38,23,0,.95);
    }
    .score-unit{margin-top:8px; font-weight:950; color: rgba(20,20,20,.72);}
    .rating-note{margin-top:10px; color: rgba(20,20,20,.68); line-height:1.7; font-size:13px;}
    .rating-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap;}

    .table-wrap{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
    }
    .table-head .table-title{font-weight:1000; font-size:18px;}
    .table-head .table-sub{margin-top:8px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.7;}
    .table-scroll{overflow:auto; margin-top:12px; border-radius:16px; border:1px solid rgba(20,20,20,.10);}
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:720px;
      background: rgba(255,255,255,.72);
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,20,20,.08);
      vertical-align:top;
      font-size:13px;
      line-height:1.65;
      color: rgba(20,20,20,.78);
    }
    .compare-table thead th{
      background: rgba(255,204,0,.14);
      font-weight:1100;
      color: rgba(38,23,0,.92);
      border-bottom:1px solid rgba(255,204,0,.22);
    }
    .compare-table tbody tr:last-child td{border-bottom:none;}
    .table-foot{
      margin-top:14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .foot-bullets{display:flex; flex-direction:column; gap:8px; max-width:64ch;}
    .foot-bullet{display:flex; gap:10px; align-items:flex-start; color: rgba(20,20,20,.72); font-size:13px; line-height:1.7;}
    .tick{
      width:20px; height:20px; border-radius:8px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      flex:0 0 auto;
      font-weight:1100;
      color: rgba(38,23,0,.92);
      margin-top:2px;
    }

    .form-shell{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
      padding:16px;
      overflow:hidden;
    }
    .form-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start;}
    .form-left-title{font-weight:1100; font-size:20px;}
    .form-left-desc{margin-top:10px; color: rgba(20,20,20,.72); line-height:1.8; font-size:13px;}
    .info-chips{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px;}
    .info-chip{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.70);
      font-weight:950; font-size:12px; color: rgba(20,20,20,.80);
    }
    .form-reassure{
      margin-top:14px;
      border-radius:18px;
      border:1px solid rgba(255,204,0,.22);
      background: linear-gradient(180deg, rgba(255,204,0,.14), rgba(255,255,255,.70));
      padding:14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .shield{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      flex:0 0 auto;
      font-size:18px;
    }
    .reassure-title{font-weight:1100; font-size:14px;}
    .reassure-text{margin-top:6px; color: rgba(20,20,20,.72); font-size:12px; line-height:1.7;}

    .form-right{display:grid; grid-template-columns: 1fr .55fr; gap:14px; align-items:start;}
    .form-card{
      border-radius:22px;
      border:1px solid rgba(255,204,0,.24);
      background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,252,240,.98) 100%);
      padding:16px;
      box-shadow: var(--shadow);
    }
    .row{display:flex; gap:12px;}
    .row-2 > .field{flex:1}
    .field{display:flex; flex-direction:column; gap:8px; margin-bottom:12px;}
    .field label{font-weight:950; font-size:13px;}
    .field input, .field select, .field textarea{
      border-radius:14px;
      border:1px solid rgba(20,20,20,.14);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      font-size:14px;
      color: rgba(20,20,20,.92);
      outline:none;
      transition: box-shadow .18s, border-color .18s;
    }
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color: rgba(255,204,0,.55);
      box-shadow: 0 0 0 4px var(--focus);
    }
    .form-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:10px;}
    .form-foot{margin-top:10px;}
    .small-form{padding:14px;}
    .form-side .side-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.04);
      position:sticky;
      top:120px;
    }
    .side-title{font-weight:1100; font-size:15px;}
    .side-list{margin-top:10px; display:flex; flex-direction:column; gap:10px;}
    .side-item{display:flex; gap:10px; align-items:flex-start; color: rgba(20,20,20,.72); font-size:13px; line-height:1.7;}
    .side-dot{
      width:10px; height:10px; border-radius:4px;
      background: rgba(255,204,0,.92);
      box-shadow: 0 10px 16px rgba(255,188,0,.20);
      margin-top:5px;
      flex:0 0 auto;
    }

    .pricing .price-grid{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;
    }
    .price-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
      display:flex; flex-direction:column; gap:10px;
      min-height:260px;
    }
    .price-card:hover{transform: translateY(-3px); box-shadow: 0 18px 38px rgba(20,18,10,.10); border-color: rgba(255,204,0,.35);}
    .price-card.featured{
      border-color: rgba(255,204,0,.30);
      background: linear-gradient(180deg, rgba(255,204,0,.14), rgba(255,255,255,.76));
    }
    .price-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px;}
    .price-title{font-weight:1100; font-size:16px;}
    .price-badge{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-size:12px;
      font-weight:1000;
      color: rgba(38,23,0,.92);
      white-space:nowrap;
    }
    .price-value{display:flex; flex-direction:column; gap:6px; padding:12px; border-radius:18px; border:1px solid rgba(20,20,20,.10); background: rgba(255,255,255,.70);}
    .price-num{font-weight:1000; color: rgba(20,20,20,.86);}
    .price-range{color: rgba(20,20,20,.70); font-weight:900; font-size:13px;}
    .price-list{margin:0; padding-left:18px; display:flex; flex-direction:column; gap:8px; color: rgba(20,20,20,.72); line-height:1.7; font-size:13px;}
    .price-actions{margin-top:auto;}
    .price-faq{margin-top:14px; border-radius:22px; border:1px solid rgba(20,20,20,.10); background: rgba(255,255,255,.74); box-shadow: 0 14px 38px rgba(20,18,10,.05); padding:16px;}
    .info-strip{display:flex; gap:12px; align-items:flex-start;}
    .info-strip-ico{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-size:18px; flex:0 0 auto;
    }
    .info-strip-title{font-weight:1100; font-size:15px;}
    .info-strip-desc{margin-top:8px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}
    .price-actions-row{margin-top:14px; display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap;}

    .training-grid{display:grid; grid-template-columns: repeat(5, 1fr); gap:14px;}
    .train-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
      min-height:190px;
    }
    .train-card:hover{transform: translateY(-3px); box-shadow: 0 18px 38px rgba(20,18,10,.10); border-color: rgba(255,204,0,.35);}
    .train-top{display:flex; align-items:center; gap:10px;}
    .train-ico{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-size:18px; flex:0 0 auto;
    }
    .train-title{font-weight:1100; font-size:15px;}
    .train-desc{margin-top:10px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}
    .train-tags{margin-top:auto; display:flex; gap:8px; flex-wrap:wrap;}
    .train-cta{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(255,204,0,.24);
      background: linear-gradient(90deg, rgba(255,204,0,.12), rgba(255,255,255,.78));
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      box-shadow: 0 16px 36px rgba(255,188,0,.10);
    }
    .cta-title{font-weight:1100; font-size:16px;}
    .cta-desc{margin-top:8px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}

    .faq-grid{display:grid; grid-template-columns: .9fr 1.1fr; gap:14px; align-items:start;}
    .faq-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
    }
    .faq-card-title{font-weight:1100; font-size:16px;}
    .faq-card-desc{margin-top:10px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}
    .faq-jump{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px;}
    .jump-link{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.72);
      font-weight:950;
      font-size:12px;
      color: rgba(20,20,20,.80);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .jump-link:hover{transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(255,204,0,.35);}
    .faq-small{margin-top:14px;}
    .accordion{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:6px;
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
    }
    .acc-item{border-radius:18px; overflow:hidden; border:1px solid rgba(20,20,20,.08); background: rgba(255,255,255,.72); margin:8px; }
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 14px;
      background: transparent;
      border:none;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      color: rgba(20,20,20,.88);
      font-weight:1000;
      font-size:14px;
    }
    .acc-btn:focus{outline:none; box-shadow: inset 0 0 0 3px var(--focus);}
    .acc-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      color: rgba(20,20,20,.70);
      flex:0 0 auto;
    }
    .acc-panel{padding:0 14px 14px;}
    .acc-content{color: rgba(20,20,20,.72); line-height:1.85; font-size:13px; padding-left:2px;}

    .mini-sections{
      margin-top:14px;
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }
    .mini-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.04);
    }
    .mini-card-head{display:flex; flex-direction:column; gap:8px;}
    .mini-kicker{font-weight:950; color: rgba(38,23,0,.86); letter-spacing:.18em; text-transform: uppercase; font-size:12px;}
    .mini-title{font-weight:1100; font-size:16px;}
    .mini-links{margin-top:12px; display:flex; flex-direction:column; gap:10px;}
    .mini-link{
      text-decoration:none; color: rgba(20,20,20,.84);
      font-weight:950; font-size:13px; line-height:1.6;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .mini-link:hover{transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(255,204,0,.35);}

    .news-list{margin-top:12px; display:flex; flex-direction:column; gap:12px;}
    .news-item{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.70);
    }
    .news-date{color: rgba(20,20,20,.58); font-weight:900; font-size:12px;}
    .news-text{margin-top:8px; color: rgba(20,20,20,.84); font-weight:1000; font-size:13px; line-height:1.6;}

    .reviews-grid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.05);
      transition: transform .18s, box-shadow .18s, border-color .18s;
      min-height:210px;
      display:flex; flex-direction:column; gap:10px;
    }
    .review-card:hover{transform: translateY(-3px); box-shadow: 0 18px 38px rgba(20,18,10,.10); border-color: rgba(255,204,0,.35);}
    .review-top{display:flex; gap:12px; align-items:flex-start;}
    .avatar{
      width:52px; height:52px; border-radius:20px;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color: rgba(38,23,0,.92);
      flex:0 0 auto;
    }
    .review-name{font-weight:1100; font-size:14px;}
    .review-tag{margin-top:6px; color: rgba(20,20,20,.64); font-weight:900; font-size:12px;}
    .review-text{margin-top:4px; color: rgba(20,20,20,.72); line-height:1.85; font-size:13px;}

    .agent-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start;}
    .agent-list{display:flex; flex-direction:column; gap:12px;}
    .agent-item{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
      box-shadow: 0 14px 38px rgba(20,18,10,.04);
      display:flex; gap:12px; align-items:flex-start;
    }
    .agent-ico{
      width:46px; height:46px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.28);
      font-size:18px; flex:0 0 auto;
    }
    .agent-title{font-weight:1100; font-size:14px;}
    .agent-desc{margin-top:8px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}
    .agent-card{
      border-radius:22px;
      border:1px solid rgba(255,204,0,.22);
      background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,252,240,.98) 100%);
      padding:16px;
      box-shadow: var(--shadow);
      position:sticky;
      top:120px;
    }
    .agent-card-title{font-weight:1100; font-size:16px;}
    .agent-chips{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px;}
    .agent-divider{height:1px; background: rgba(20,20,20,.10); margin:14px 0;}
    .agent-card-foot{display:flex; flex-direction:column; gap:12px;}
    .agent-foot-title{font-weight:1100; font-size:14px;}
    .agent-foot-desc{color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}

    .contact-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start;}
    .contact-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 38px rgba(20,18,10,.04);
    }
    .contact-card.alt{
      border-color: rgba(255,204,0,.22);
      background: linear-gradient(180deg, rgba(255,204,0,.10), rgba(255,255,255,.76));
    }
    .contact-title{font-weight:1100; font-size:16px; margin-bottom:12px;}
    .contact-rows{display:flex; flex-direction:column; gap:10px;}
    .contact-row{display:flex; gap:12px; align-items:flex-start; justify-content:space-between;}
    .contact-key{color: rgba(20,20,20,.62); font-weight:950; font-size:12px; letter-spacing:.08em; text-transform: uppercase; white-space:nowrap;}
    .contact-val{font-weight:950; color: rgba(20,20,20,.82); font-size:13px; text-align:right;}
    .link{color: rgba(20,20,20,.86); text-decoration: underline; text-decoration-color: rgba(255,204,0,.65); text-underline-offset: 3px; font-weight:950;}
    .contact-qr{margin-top:14px; display:flex; flex-direction:column; gap:12px;}
    .qr-card{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.72);
      padding:14px;
      display:flex; flex-direction:column; align-items:center; gap:10px;
      box-shadow: 0 12px 26px rgba(20,18,10,.04);
    }
    .qr-img{width:140px; max-width:100%; height:auto; border-radius:16px; display:block;}
    .qr-text{font-weight:1000; color: rgba(20,20,20,.80); font-size:13px;}
    .qr-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:center;}
    .contact-mini{margin-top:14px; padding-top:12px; border-top:1px dashed rgba(20,20,20,.14);}
    .contact-mini-title{font-weight:1100; font-size:14px;}
    .contact-mini-desc{margin-top:8px; color: rgba(20,20,20,.72); font-size:13px; line-height:1.8;}
    .contact-mini-chips{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px;}

    .friendly-links{margin-top:14px; border-radius:22px; border:1px solid rgba(20,20,20,.10); background: rgba(255,255,255,.74); padding:16px; box-shadow: 0 14px 38px rgba(20,18,10,.04);}
    .friendly-title{font-weight:1100; font-size:14px; margin-bottom:10px;}
    .friendly-list{display:flex; flex-wrap:wrap; gap:10px;}
    .friendly-list a{
      text-decoration:none; font-weight:950; font-size:13px;
      padding:10px 12px; border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.70);
      color: rgba(20,20,20,.84);
      transition: transform .18s, box-shadow .18s, border-color .18s;
    }
    .friendly-list a:hover{transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(255,204,0,.35);}

    .site-footer{
      background: linear-gradient(180deg, rgba(255,247,221,.96) 0%, rgba(255,255,255,.98) 100%);
      border-top:1px solid rgba(20,20,20,.08);
      padding:28px 0;
    }
    .footer-inner{
      display:flex; gap:18px;
      align-items:flex-start; justify-content:space-between;
      flex-wrap:wrap;
    }
    .footer-brand{display:flex; gap:12px; align-items:flex-start; min-width:320px;}
    .footer-logo .ai-page-logo{width:44px;}
    .footer-name{font-weight:1100; font-size:16px;}
    .footer-desc{margin-top:8px; color: rgba(20,20,20,.70); font-size:13px; line-height:1.8; max-width:42ch;}

    .footer-links{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; min-width:420px;}
    .footer-col{display:flex; flex-direction:column; gap:10px;}
    .footer-col-title{font-weight:1100; font-size:13px; color: rgba(20,20,20,.86);}
    .footer-col a{
      color: rgba(20,20,20,.76);
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      width:fit-content;
      transition: background .18s, border-color .18s, transform .18s;
    }
    .footer-col a:hover{
      background: rgba(255,204,0,.14);
      border-color: rgba(255,204,0,.30);
      transform: translateY(-1px);
    }

    .footer-cta{min-width:300px; max-width:420px;}
    .footer-cta-title{font-weight:1100; font-size:15px;}
    .footer-cta-desc{margin-top:8px; color: rgba(20,20,20,.70); font-size:13px; line-height:1.8;}
    .footer-cta-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;}
    .footer-copyright{margin-top:14px; color: rgba(20,20,20,.62); font-size:12px; font-weight:850; display:flex; align-items:center; gap:10px; flex-wrap:wrap;}
    .sep{opacity:.6}

    .to-top{
      position:fixed;
      right:16px;
      bottom:92px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.14);
      background: rgba(255,255,255,.86);
      box-shadow: var(--shadow2);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      color: rgba(20,20,20,.8);
      opacity:0; transform: translateY(8px);
      pointer-events:none;
      transition: opacity .18s, transform .18s;
      z-index:80;
    }
    .to-top.show{opacity:1; transform: translateY(0); pointer-events:auto;}
    .to-top:focus{outline:none; box-shadow:0 0 0 4px var(--focus);}

    .float-customer{
      position:fixed;
      right:16px;
      bottom:24px;
      z-index:90;
      text-decoration:none;
      border-radius: 18px;
      padding:12px 14px;
      border:1px solid rgba(255,204,0,.36);
      background: linear-gradient(180deg, rgba(255,204,0,.98) 0%, rgba(255,179,0,.98) 100%);
      color: rgba(38,23,0,.95);
      font-weight:1000;
      box-shadow: 0 18px 40px rgba(255,188,0,.22);
      display:flex; align-items:center; gap:10px;
      transition: transform .18s, box-shadow .18s;
    }
    .float-customer:hover{transform: translateY(-2px); box-shadow: 0 24px 54px rgba(255,188,0,.28);}
    .float-ico{
      width:32px; height:32px; border-radius:14px;
      border:1px solid rgba(38,23,0,.15);
      background: rgba(255,255,255,.55);
      display:flex; align-items:center; justify-content:center;
      font-size:14px;
    }
    .float-text{font-size:13px; white-space:nowrap;}

    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; gap:14px;}
      .hero-title{font-size:34px;}
      .features-grid{grid-template-columns: repeat(2, 1fr);}
      .panel-row{grid-template-columns: 1fr; margin-bottom:12px;}
      .panel-row.split-bottom{grid-template-columns: 1fr; }
      .industry-grid{grid-template-columns: repeat(2, 1fr);}
      .cards-grid{grid-template-columns: repeat(2, 1fr);}
      .compare-grid{grid-template-columns: 1fr;}
      .rating-card{position:relative; top:auto;}
      .form-grid{grid-template-columns: 1fr;}
      .form-right{grid-template-columns: 1fr; }
      .form-side .side-card{position:relative; top:auto;}
      .training-grid{grid-template-columns: repeat(2, 1fr);}
      .faq-grid{grid-template-columns: 1fr;}
      .reviews-grid{grid-template-columns: 1fr;}
      .agent-grid{grid-template-columns: 1fr;}
      .agent-card{position:relative; top:auto;}
      .contact-grid{grid-template-columns: 1fr;}
      .footer-links{grid-template-columns: 1fr; min-width:unset;}
    }

    @media (max-width: 820px){
      .nav-desktop{display:none;}
      .nav-toggle{display:flex;}
      .brand{min-width:unset;}
      .hero{padding-top:34px;}
      .section-title{font-size:24px;}
      .article-row{grid-template-columns: 1fr; }
      .kpi-grid{grid-template-columns: 1fr 1fr;}
      .two-col{grid-template-columns: 1fr;}
    }