:root{
      --bg:#fbf4ef;
      --surface:#ffffff;
      --surface2:#fff8f3;
      --text:#1f2937;
      --muted:#6b7280;
      --line:rgba(17,24,39,.10);
      --shadow: 0 12px 30px rgba(17,24,39,.08);
      --shadow2: 0 8px 18px rgba(17,24,39,.10);
      --primary:#ff4d6d;
      --primary2:#ff7a2f;
      --accent:#3b82f6;
      --good:#10b981;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:24px;
      --container:1160px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 20% -10%, rgba(255,77,109,.18), transparent 60%),
        radial-gradient(900px 600px at 100% 10%, rgba(255,122,47,.16), transparent 55%),
        radial-gradient(800px 550px at 0% 70%, rgba(59,130,246,.10), transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--bg) 44%, #ffffff 100%);
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
      background:var(--surface); color:var(--text);
      padding:10px 12px; border-radius:12px; border:1px solid var(--line);
      z-index:9999;
    }
    .skip-link:focus{ left:16px; top:16px; width:auto; height:auto; }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:16px;
    }
    .brand-link{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; }
    .ai-page-logo{ width:124px; height:auto; display:block; }

    .nav{
      display:flex; align-items:center; justify-content:center;
      gap:18px; flex-wrap:wrap;
    }
    .nav-link{
      text-decoration:none; color:rgba(31,41,55,.86);
      font-weight:600; font-size:14px;
      padding:8px 10px; border-radius:12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
    }
    .nav-link:hover{
      background: rgba(255,77,109,.08);
      color: rgba(31,41,55,1);
      transform: translateY(-1px);
    }

    .nav-actions{ display:flex; align-items:center; gap:10px; }
    .btn{
      appearance:none;
      border:1px solid rgba(17,24,39,.12);
      border-radius:14px;
      padding:10px 14px;
      text-decoration:none;
      color:rgba(31,41,55,.95);
      background:#fff;
      font-weight:700;
      cursor:pointer;
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{ transform: translateY(1px); }
    .btn:hover{ box-shadow: 0 10px 20px rgba(17,24,39,.10); border-color: rgba(17,24,39,.18); }

    .btn-primary{
      border-color: rgba(255,77,109,.35);
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
      color:#fff;
      box-shadow: 0 12px 24px rgba(255,77,109,.18);
    }
    .btn-primary:hover{ box-shadow: 0 16px 32px rgba(255,77,109,.22); border-color: rgba(255,77,109,.55); }
    .btn-ghost{
      background: rgba(255,255,255,.78);
    }
    .btn-ghost:hover{
      background: rgba(255,77,109,.06);
    }
    .btn-lg{ padding:12px 18px; border-radius:16px; font-size:15px; }
    .btn-sm{ padding:8px 12px; border-radius:12px; font-size:13px; }
    .w100{ width:100%; }

    .nav-toggle{
      display:none;
      border-radius:14px;
      padding:10px 12px;
      background: rgba(255,255,255,.85);
    }
    .nav-toggle-icon{
      width:18px; height:12px; position:relative; display:inline-block;
    }
    .nav-toggle-icon:before, .nav-toggle-icon:after, .nav-toggle-icon i{
      content:""; position:absolute; left:0; right:0; height:2px; border-radius:2px; background: rgba(31,41,55,.85);
    }
    .nav-toggle-icon:before{ top:0; }
    .nav-toggle-icon:after{ bottom:0; }
    .nav-toggle-icon{ }
    .nav-toggle-icon::marker{ content: ""; }
    .nav-toggle-icon{ }
    .nav-toggle-icon span{ display:none; }
    .nav-toggle-icon{ }
    .nav-toggle-icon i{ top:5px; }
    .nav-toggle-icon:after{}
    .nav-toggle-text{ font-weight:800; }

    .mobile-menu{
      display:none;
      border-top:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.92);
      padding:12px 0 16px;
    }
    .mobile-menu.open{ display:block; }
    .mobile-menu[hidden]{ display:none; }
    .mobile-menu-inner{ display:block; }
    .mobile-links{
      display:flex; flex-wrap:wrap; gap:10px;
      padding-bottom:12px;
    }
    .mobile-link{
      flex: 1 1 calc(50% - 10px);
      text-decoration:none;
      background: rgba(255,77,109,.06);
      border:1px solid rgba(255,77,109,.18);
      border-radius:14px;
      padding:10px 12px;
      color: rgba(31,41,55,.95);
      font-weight:800;
      text-align:center;
    }
    .mobile-cta{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
    .mobile-cta .btn{ font-weight:900; }

    .hero{
      position:relative;
      padding:44px 0 18px;
      overflow:hidden;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:26px;
      align-items:center;
      padding:6px 0 18px;
    }
    .hero-copy{
      position:relative;
      padding:8px 0;
    }
    .pill-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px; }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.22);
      font-weight:900; font-size:13px;
      color: rgba(31,41,55,.92);
    }
    .pill.soft{
      background: rgba(59,130,246,.08);
      border-color: rgba(59,130,246,.18);
    }
    .pill-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
      box-shadow: 0 10px 20px rgba(255,77,109,.26);
    }

    .hero-title{
      font-size: clamp(30px, 3.4vw, 46px);
      line-height:1.12;
      letter-spacing:-.02em;
      margin:0 0 12px;
    }
    .hero-sub{
      margin:0 0 18px;
      color: rgba(31,41,55,.82);
      font-weight:650;
      line-height:1.75;
      font-size:15px;
      max-width: 62ch;
    }

    .hero-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:18px; }
    .hero-badges{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .badge{
      display:flex; align-items:center; gap:12px;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(17,24,39,.10);
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      min-width: 220px;
    }
    .badge:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(17,24,39,.10);
    }
    .badge-icon{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,77,109,.16) 0%, rgba(255,122,47,.14) 100%);
      border:1px solid rgba(255,77,109,.22);
      font-weight:1000;
    }
    .badge-title{ font-weight:1000; font-size:14px; }
    .badge-sub{ color: rgba(31,41,55,.66); font-weight:700; font-size:12.5px; margin-top:2px; }

    .hero-surface{
      position:relative;
      border-radius:var(--radius2);
      background:
        radial-gradient(900px 500px at 10% 0%, rgba(255,77,109,.18), transparent 55%),
        radial-gradient(700px 420px at 100% 10%, rgba(59,130,246,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.76) 0%, rgba(255,248,243,.92) 100%);
      border:1px solid rgba(17,24,39,.10);
      box-shadow: var(--shadow);
      padding:18px;
      overflow:hidden;
      min-height: 360px;
    }
    .surface-grid{
      position:absolute; inset:-2px;
      background:
        linear-gradient(transparent 23px, rgba(17,24,39,.06) 24px),
        linear-gradient(90deg, transparent 23px, rgba(17,24,39,.06) 24px);
      background-size: 24px 24px;
      opacity:.55;
      mask-image: radial-gradient(circle at 30% 20%, rgba(0,0,0,1), rgba(0,0,0,0) 70%);
      pointer-events:none;
    }
    .surface-cards{
      position:relative;
      display:grid; gap:14px;
    }
    .data-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius:18px;
      padding:14px 14px;
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      transform: translateY(0);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .data-card.alt{ border-color: rgba(59,130,246,.18); background: rgba(255,255,255,.70); }
    .data-card:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .data-card-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:8px; }
    .data-kicker{ color: rgba(31,41,55,.68); font-weight:900; font-size:12.5px; }
    .data-tag{
      font-size:12px; font-weight:1000;
      padding:6px 10px; border-radius:999px;
      background: rgba(255,77,109,.12);
      border:1px solid rgba(255,77,109,.20);
      color: rgba(31,41,55,.95);
    }
    .data-tag.soft{
      background: rgba(59,130,246,.10);
      border-color: rgba(59,130,246,.18);
    }
    .data-value{ font-size:18px; font-weight:1100; letter-spacing:-.01em; margin-bottom:6px; }
    .data-desc{ color: rgba(31,41,55,.72); font-weight:650; font-size:13.5px; line-height:1.6; }

    .hero-marquee{
      margin-top:18px;
      border-top:1px solid rgba(17,24,39,.08);
      border-bottom:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.55);
      overflow:hidden;
    }
    .marquee-track{
      display:flex; gap:24px;
      padding:12px 0;
      width:max-content;
      animation: marquee 20s linear infinite;
    }
    @keyframes marquee{
      0%{ transform: translateX(0); }
      100%{ transform: translateX(-50%); }
    }
    .hero-marquee span{
      font-weight:950;
      color: rgba(31,41,55,.72);
      padding:6px 12px;
      border-radius:999px;
      background: rgba(255,77,109,.07);
      border:1px solid rgba(255,77,109,.14);
      white-space:nowrap;
    }

    .section{ padding:46px 0; }
    .section.alt-surface{
      background: linear-gradient(180deg, rgba(255,255,255,.70) 0%, rgba(255,248,243,.88) 100%);
      border-top:1px solid rgba(17,24,39,.06);
      border-bottom:1px solid rgba(17,24,39,.06);
    }

    .section-head{
      display:flex; gap:16px; align-items:flex-end; justify-content:space-between;
      margin-bottom:22px;
    }
    .section-head.left{ align-items:flex-start; }
    .section-title{
      margin:0;
      font-size: clamp(22px, 2.2vw, 30px);
      letter-spacing:-.02em;
      line-height:1.25;
    }
    .section-desc{
      margin:0;
      color: rgba(31,41,55,.76);
      font-weight:650;
      line-height:1.7;
      max-width: 62ch;
      font-size:14.5px;
    }

    .stats-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .stat-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius:18px;
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      display:flex; gap:12px; align-items:flex-start;
    }
    .stat-icon{
      width:40px; height:40px; border-radius:14px;
      background: linear-gradient(135deg, rgba(255,77,109,.18) 0%, rgba(255,122,47,.14) 100%);
      border:1px solid rgba(255,77,109,.20);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
    }
    .stat-num{ font-weight:1100; font-size:16px; margin-bottom:6px; }
    .stat-sub{ color: rgba(31,41,55,.72); font-weight:650; line-height:1.6; font-size:13.5px; }

    .two-col{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:start;
    }

    .platform-intro{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      padding:16px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .intro-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(17,24,39,.08);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .intro-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(17,24,39,.10);
    }
    .intro-dot{
      width:10px; height:10px; border-radius:50%;
      margin-top:7px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
      box-shadow: 0 10px 20px rgba(255,77,109,.22);
      flex:0 0 auto;
    }
    .mini-title{ margin:0; font-size:14.5px; font-weight:1100; }
    .mini-desc{ margin:6px 0 0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.6; font-size:13.5px; }

    .panel{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .panel-head{
      padding:16px 16px 10px;
      background:
        radial-gradient(600px 220px at 20% 0%, rgba(255,77,109,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .panel-title{ font-weight:1200; font-size:16px; }
    .panel-sub{ color: rgba(31,41,55,.72); font-weight:650; margin-top:6px; font-size:13.5px; line-height:1.6; }
    .scene-list{ padding:10px 16px 16px; display:grid; gap:10px; }
    .scene-item{
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,248,243,.92);
      border:1px solid rgba(17,24,39,.08);
    }
    .scene-k{ font-weight:1000; font-size:13px; color: rgba(31,41,55,.70); margin-bottom:6px; }
    .scene-v{ font-weight:900; color: rgba(31,41,55,.95); font-size:14px; line-height:1.5; }

    .panel-foot{
      padding:14px 16px 16px;
      border-top:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
    }
    .fineprint{ margin-top:10px; color: rgba(31,41,55,.64); font-weight:650; font-size:12.5px; line-height:1.6; }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .service-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 210px;
    }
    .service-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,248,243,.92)); }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 34px rgba(17,24,39,.10);
      border-color: rgba(255,77,109,.18);
    }
    .service-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; }
    .service-ico{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.18);
      font-size:18px;
    }
    .service-title{ margin:0; font-size:16px; font-weight:1200; letter-spacing:-.01em; }
    .service-desc{ margin:0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
    .chip{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,77,109,.08);
      border:1px solid rgba(255,77,109,.16);
      font-weight:900;
      color: rgba(31,41,55,.92);
      font-size:12.5px;
    }
    .service-card.alt .chip{
      background: rgba(59,130,246,.08);
      border-color: rgba(59,130,246,.16);
    }

    .step-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .step-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      min-height: 160px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .step-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .step-num{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      font-weight:1100;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.18);
      color: rgba(31,41,55,.95);
      margin-bottom:10px;
      letter-spacing:.02em;
    }
    .step-title{ margin:0 0 8px; font-size:16px; font-weight:1200; letter-spacing:-.01em; }
    .step-desc{ margin:0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }

    .industry-grid{
      display:grid; grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .industry-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .industry-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .industry-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92));
    }
    .industry-head{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
    .industry-ico{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(59,130,246,.08);
      border:1px solid rgba(59,130,246,.16);
      font-size:18px;
    }
    .industry-card:nth-child(odd) .industry-ico{
      background: rgba(255,77,109,.10);
      border-color: rgba(255,77,109,.18);
    }
    .industry-title{ margin:0; font-size:16px; font-weight:1200; }
    .industry-desc{ margin:0 0 12px; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .bullets{ margin:0; padding-left:18px; display:grid; gap:8px; }
    .bullets li{
      color: rgba(31,41,55,.82);
      font-weight:650;
      line-height:1.6;
      font-size:13.5px;
    }

    .timeline{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding:16px;
      display:grid; gap:10px;
    }
    .timeline-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(17,24,39,.08);
    }
    .t-dot{
      width:12px; height:12px; border-radius:50%;
      margin-top:7px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
      box-shadow: 0 12px 24px rgba(255,77,109,.18);
      flex:0 0 auto;
    }
    .t-title{ margin:0; font-size:14.5px; font-weight:1200; }
    .t-desc{ margin:6px 0 0; color: rgba(31,41,55,.72); font-weight:650; line-height:1.7; font-size:13.5px; }

    .compare-head{
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between;
      margin-bottom:14px;
    }
    .rating-wrap{ display:flex; gap:14px; align-items:center; }
    .rating-badge{
      display:flex; align-items:center; gap:12px;
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: 18px;
      padding:12px 12px;
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
    }
    .rating-stars{ font-size:15px; color: rgba(245,158,11,1); letter-spacing:1px; }
    .rating-strong{ font-weight:1200; font-size:15px; }
    .rating-small{ color: rgba(31,41,55,.68); font-weight:700; font-size:12.5px; margin-top:3px; }

    .rating-score{
      text-align:left;
      background: linear-gradient(135deg, rgba(255,77,109,.16) 0%, rgba(255,122,47,.12) 100%);
      border:1px solid rgba(255,77,109,.22);
      border-radius:18px;
      padding:12px 14px;
      box-shadow: 0 10px 22px rgba(255,77,109,.10);
      min-width: 150px;
    }
    .score-num{ font-weight:1300; font-size:26px; line-height:1; letter-spacing:-.03em; }
    .score-den{ color: rgba(31,41,55,.70); font-weight:850; font-size:13px; margin-top:6px; }

    .compare-table-wrap{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .table-scroll{ overflow:auto; }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width: 760px;
      font-weight:650;
    }
    .compare-table th, .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      text-align:left;
      font-size:14px;
    }
    .compare-table thead th{
      background: rgba(255,248,243,.95);
      font-weight:1200;
      color: rgba(31,41,55,.92);
    }
    .ok{ display:inline-flex; align-items:center; padding:4px 10px; border-radius:999px; font-weight:1100; background: rgba(16,185,129,.12); border:1px solid rgba(16,185,129,.18); color: rgba(16,185,129,1); }
    .warn{ display:inline-flex; align-items:center; padding:4px 10px; border-radius:999px; font-weight:1100; background: rgba(245,158,11,.14); border:1px solid rgba(245,158,11,.22); color: rgba(245,158,11,1); }

    .compare-cta{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
      justify-content:flex-start;
    }

    .price-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .price-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .price-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92));
    }
    .price-head{ margin-bottom:12px; }
    .price-title{ font-weight:1200; font-size:16px; }
    .price-note{ color: rgba(31,41,55,.68); font-weight:700; margin-top:6px; font-size:13.5px; line-height:1.6; }
    .price-list{ margin:0; padding:0; list-style:none; display:grid; gap:10px; }
    .price-list li{ color: rgba(31,41,55,.82); font-weight:650; line-height:1.6; font-size:13.5px; }
    .bullet{
      display:inline-block; width:10px; height:10px; border-radius:50%; margin-right:10px; transform: translateY(1px);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(17,24,39,.06);
    }
    .bullet.ok{ background: rgba(16,185,129,.14); border-color: rgba(16,185,129,.22); }
    .factor-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .factor{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius:16px;
      padding:12px;
    }
    .factor-k{ font-weight:1100; font-size:13px; color: rgba(31,41,55,.70); margin-bottom:6px; }
    .factor-v{ font-weight:900; font-size:13.5px; color: rgba(31,41,55,.95); line-height:1.5; }
    .price-foot{ margin-top:14px; }
    .form-card{ position:relative; }

    .network-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }
    .network-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .network-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .network-top{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
    .network-icon{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.18);
      font-size:18px;
    }
    .network-desc{ margin:0 0 12px; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .network-tags{ display:flex; gap:8px; flex-wrap:wrap; }
    .tag{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(59,130,246,.08);
      border:1px solid rgba(59,130,246,.16);
      font-weight:900;
      color: rgba(31,41,55,.90);
      font-size:12.5px;
    }
    .network-card .tag:nth-child(1){ background: rgba(255,77,109,.08); border-color: rgba(255,77,109,.16); }
    .network-quick{ display:grid; gap:10px; margin-top:4px; }
    .quick-row{ display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:16px; background: rgba(255,255,255,.78); border:1px solid rgba(17,24,39,.10); }
    .quick-k{ color: rgba(31,41,55,.68); font-weight:900; font-size:13px; }
    .quick-v{ font-weight:950; font-size:13.5px; color: rgba(31,41,55,.95); }

    .link{ color: var(--primary); font-weight:1100; text-decoration:none; }
    .link:hover{ text-decoration:underline; }

    .cases-grid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height: 190px;
    }
    .case-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .case-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .case-kicker{ color: rgba(31,41,55,.68); font-weight:950; font-size:13px; margin-bottom:10px; }
    .case-title{ margin:0 0 10px; font-size:16px; font-weight:1200; letter-spacing:-.01em; }
    .case-desc{ margin:0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .case-meta{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
    .meta-pill{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,77,109,.08);
      border:1px solid rgba(255,77,109,.16);
      font-weight:950; font-size:12.5px;
    }
    .case-card.alt .meta-pill{
      background: rgba(59,130,246,.08);
      border-color: rgba(59,130,246,.16);
    }
    .meta-pill.soft{
      background: rgba(16,185,129,.10);
      border-color: rgba(16,185,129,.18);
    }
    .case-more{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .article-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .article-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height: 210px;
      display:flex; flex-direction:column;
    }
    .article-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .article-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .article-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
    .article-badge{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,77,109,.08);
      border:1px solid rgba(255,77,109,.16);
      font-weight:1100; font-size:12.5px;
    }
    .article-time{ color: rgba(31,41,55,.66); font-weight:900; font-size:12.5px; }
    .article-title{ margin:0 0 10px; font-size:16px; font-weight:1200; letter-spacing:-.01em; }
    .article-desc{ margin:0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .article-actions{ margin-top:auto; padding-top:14px; }
    .article-more{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .review-grid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .review-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .review-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .review-top{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
    .avatar{
      width:44px; height:44px; border-radius:16px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1200;
    }
    .review-card.alt .avatar{
      background: rgba(59,130,246,.10);
      border-color: rgba(59,130,246,.18);
    }
    .review-name{ font-weight:1200; font-size:14.5px; }
    .review-meta{ color: rgba(31,41,55,.66); font-weight:850; font-size:12.8px; margin-top:4px; }
    .review-text{ margin:0; color: rgba(31,41,55,.76); font-weight:650; line-height:1.75; font-size:13.7px; }

    .match-grid{
      display:grid; grid-template-columns: .98fr 1.02fr;
      gap:14px; align-items:start;
    }
    .match-info{
      display:flex; flex-direction:column; gap:14px;
    }
    .info-block{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .checklist{ list-style:none; padding:0; margin:12px 0 0; display:grid; gap:10px; }
    .checklist.compact{ gap:8px; }
    .check{
      display:inline-block; width:18px; height:18px; border-radius:6px;
      background: rgba(16,185,129,.12);
      border:1px solid rgba(16,185,129,.22);
      position:relative; margin-right:10px; transform: translateY(3px);
    }
    .check:after{
      content:"";
      position:absolute; left:5px; top:4px;
      width:7px; height:4px;
      border-left:2px solid rgba(16,185,129,1);
      border-bottom:2px solid rgba(16,185,129,1);
      transform: rotate(-45deg);
    }
    .checklist li{ font-weight:750; color: rgba(31,41,55,.84); line-height:1.6; font-size:14px; }

    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:16px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .tag-link{
      text-decoration:none;
      padding:9px 12px;
      border-radius:999px;
      font-weight:1100;
      font-size:13px;
      background: rgba(255,77,109,.08);
      border:1px solid rgba(255,77,109,.16);
      color: rgba(31,41,55,.95);
      transition: transform .16s ease, background .16s ease;
    }
    .tag-link:hover{ transform: translateY(-2px); background: rgba(255,77,109,.12); }

    .form-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding:16px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .form-head{ padding:10px 8px 0; }
    .form-title{ font-weight:1300; font-size:18px; letter-spacing:-.01em; }
    .form-sub{ color: rgba(31,41,55,.68); font-weight:700; margin-top:6px; line-height:1.6; font-size:13.5px; }

    .form{
      display:grid; gap:12px;
    }
    .form-row{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{ display:grid; gap:8px; }
    .field-label{ font-weight:950; color: rgba(31,41,55,.74); font-size:13.5px; }
    .input, .textarea{
      width:100%;
      border-radius:14px;
      padding:12px 12px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.92);
      font-weight:800;
      color: rgba(31,41,55,.95);
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    .input:focus, .textarea:focus{
      border-color: rgba(255,77,109,.35);
      box-shadow: 0 0 0 4px rgba(255,77,109,.12);
    }
    .textarea{ resize: vertical; min-height: 120px; }
    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
    }
    .form-hint{
      display:flex; align-items:center; gap:10px;
      color: rgba(31,41,55,.66);
      font-weight:750;
      font-size:12.8px;
      line-height:1.6;
      padding:10px 12px;
      border-radius:16px;
      border:1px dashed rgba(17,24,39,.16);
      background: rgba(255,248,243,.90);
    }
    .hint-dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(255,77,109,.75);
      box-shadow: 0 12px 22px rgba(255,77,109,.20);
    }

    .form-side{ display:none; }
    .qr-wrap{ margin-top:12px; display:flex; justify-content:flex-start; }
    .qr-img{
      width:118px; height:118px; object-fit:contain;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.90);
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
    }
    .side-card{
      background: rgba(255,248,243,.92);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:14px;
    }
    .side-title{ font-weight:1200; margin-bottom:10px; }
    .side-line{ display:flex; justify-content:space-between; gap:10px; margin:10px 0; }
    .side-k{ color: rgba(31,41,55,.66); font-weight:900; font-size:13px; }
    .side-v{ font-weight:1100; font-size:13.5px; color: rgba(31,41,55,.95); }

    .help-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }
    .help-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .help-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .mini-desc{ margin:8px 0 0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .help-actions{ margin-top:12px; }

    .faq-grid{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .faq-col{ display:grid; gap:10px; }
    .faq-item{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(17,24,39,.10);
      border-radius:18px;
      padding:0;
      overflow:hidden;
      transition: box-shadow .2s ease, transform .2s ease;
    }
    .faq-item:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .faq-summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      font-weight:1100;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      user-select:none;
    }
    .faq-body{
      padding:0 14px 14px;
      color: rgba(31,41,55,.76);
      font-weight:650;
      line-height:1.75;
      font-size:13.7px;
      border-top:1px solid rgba(17,24,39,.08);
      animation: faqIn .18s ease both;
    }
    @keyframes faqIn{ from{ opacity:0; transform: translateY(-4px);} to{opacity:1; transform: translateY(0);} }
    .faq-plus{
      width:26px; height:26px;
      border-radius:12px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.18);
      position:relative;
      flex:0 0 auto;
    }
    .faq-plus:before, .faq-plus:after{
      content:""; position:absolute; left:50%; top:50%;
      background: rgba(31,41,55,.88);
      border-radius:2px;
      transform: translate(-50%,-50%);
    }
    .faq-plus:before{ width:12px; height:2px; }
    .faq-plus:after{ width:2px; height:12px; transition: transform .18s ease, opacity .18s ease; }
    details[open] .faq-plus:after{ transform: translate(-50%,-50%) rotate(90deg); opacity:0; }

    .wiki-grid{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;
    }
    .wiki-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .wiki-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .wiki-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .wiki-title{ margin:0 0 10px; font-size:15.5px; font-weight:1200; letter-spacing:-.01em; }
    .wiki-desc{ margin:0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }

    .news-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; }
    .news-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .news-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,24,39,.10); }
    .news-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .news-kicker{ color: rgba(31,41,55,.68); font-weight:950; font-size:13px; margin-bottom:10px; }
    .news-title{ margin:0 0 10px; font-size:16px; font-weight:1200; letter-spacing:-.01em; line-height:1.35; }
    .news-desc{ margin:0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .news-more{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .training-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
    .training-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .training-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .training-head{ display:flex; align-items:flex-start; gap:12px; margin-bottom:10px; }
    .training-ico{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.18);
      font-size:18px;
    }
    .training-card.alt .training-ico{
      background: rgba(59,130,246,.10);
      border-color: rgba(59,130,246,.18);
    }
    .training-title{ margin:0; font-size:16px; font-weight:1200; }
    .training-desc{ margin:6px 0 0; color: rgba(31,41,55,.74); font-weight:650; line-height:1.7; font-size:13.5px; }
    .training-list{
      display:grid; gap:10px; margin-top:10px;
    }
    .t-item{
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,248,243,.92);
      border:1px solid rgba(17,24,39,.10);
      font-weight:1100;
      color: rgba(31,41,55,.95);
    }
    .training-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .join-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
    .join-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .join-card.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .join-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }
    .join-foot{ margin-top:14px; padding-top:14px; border-top:1px solid rgba(17,24,39,.08); display:grid; gap:10px; }
    .join-line{ display:flex; justify-content:space-between; gap:10px; }
    .join-k{ color: rgba(31,41,55,.66); font-weight:900; font-size:13px; }
    .join-v{ font-weight:1100; color: rgba(31,41,55,.95); }

    .media-grid{
      display:grid; grid-template-columns: 1.08fr .92fr;
      gap:14px;
    }
    .media-item{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      padding:16px;
    }
    .media-item.alt{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,243,.92)); }
    .media-label{ font-weight:1200; margin-bottom:12px; }
    .media-row{ display:flex; gap:12px; }
    .media-frame{
      flex:1;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(17,24,39,.10);
      border-radius:18px;
      padding:10px;
    }
    .media-img{
      width:100%;
      height:auto;
      display:block;
      border-radius:14px;
      object-fit:contain;
    }
    .media-square{
      width:100%;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(17,24,39,.10);
      border-radius:18px;
      padding:14px;
    }
    .media-img.square{ max-width: 100%; height:auto; display:block; margin:0 auto; }

    .site-footer{
      background: #0f172a;
      color: rgba(255,255,255,.88);
      border-top:1px solid rgba(255,255,255,.10);
      padding:34px 0 20px;
    }
    .footer-inner{ display:flex; flex-direction:column; gap:18px; }
    .footer-top{
      display:flex; gap:18px; justify-content:space-between; align-items:flex-start;
    }
    .footer-brand{ max-width: 420px; }
    .footer-logo{ width:140px; }
    .footer-img{ width:100%; height:auto; display:block; }
    .footer-desc{
      margin-top:12px;
      color: rgba(255,255,255,.78);
      line-height:1.7;
      font-weight:650;
      font-size:13.5px;
    }
    .footer-cols{
      display:grid;
      grid-template-columns: repeat(3, minmax(180px, 1fr));
      gap:16px;
      width: 100%;
    }
    .footer-col{ }
    .footer-title{ font-weight:1200; margin-bottom:10px; }
    .footer-links{
      display:flex; flex-direction:column; gap:8px;
      color: rgba(255,255,255,.80);
      font-weight:650;
      font-size:13.5px;
    }
    .footer-links a{
      color: rgba(255,255,255,.86);
      text-decoration:none;
    }
    .footer-links a:hover{ text-decoration:underline; }
    .footer-muted{ color: rgba(255,255,255,.70); }

    .footer-bottom{
      display:flex; justify-content:space-between; align-items:center; gap:10px;
      border-top:1px solid rgba(255,255,255,.10);
      padding-top:16px;
    }
    .footer-left{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
    .footer-home{
      color: rgba(255,255,255,.92) !important;
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      border-radius:999px;
      padding:8px 12px;
      text-decoration:none;
      font-weight:1100;
    }
    .footer-sep{ color: rgba(255,255,255,.35); }
    .footer-copy{ color: rgba(255,255,255,.78); font-weight:650; font-size:13px; }

    .to-top{
      position:fixed;
      right:16px; bottom:92px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 38px rgba(17,24,39,.16);
      cursor:pointer;
      opacity:0;
      pointer-events:none;
      transform: translateY(8px);
      transition: opacity .2s ease, transform .2s ease;
      z-index:60;
      font-weight:1200;
      color: rgba(31,41,55,.92);
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }

    .float-customer{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:18px;
      display:flex;
      gap:10px;
      z-index:70;
      padding:10px;
      border-radius:22px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      box-shadow: 0 18px 38px rgba(17,24,39,.16);
      backdrop-filter: blur(10px);
      max-width: calc(100% - 18px);
    }
    .float-item{
      flex:1;
      text-decoration:none;
      border-radius:18px;
      padding:12px 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,248,243,.92);
      color: rgba(31,41,55,.95);
      display:flex; align-items:center; justify-content:center; gap:10px;
      font-weight:1200;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .float-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(17,24,39,.10);
      background: rgba(255,77,109,.08);
    }
    .float-ico{
      width:30px; height:30px; border-radius:12px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .float-item:nth-child(2) .float-ico{
      background: rgba(59,130,246,.10);
      border-color: rgba(59,130,246,.18);
    }
    .float-text{
      font-size:13.5px;
    }

    @media (max-width: 980px){
      .nav.desktop-nav{ display:none; }
      .nav-toggle{ display:inline-flex; }
      .mobile-menu{ display:block; }
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-surface{ min-height: 280px; }
      .stats-grid{ grid-template-columns: repeat(2, 1fr); }
      .two-col{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: repeat(2, 1fr); }
      .step-grid{ grid-template-columns: repeat(2, 1fr); }
      .industry-grid{ grid-template-columns: 1fr; }
      .cases-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: repeat(2, 1fr); }
      .review-grid{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: repeat(2, 1fr); }
      .news-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .media-grid{ grid-template-columns: 1fr; }
      .footer-top{ flex-direction:column; }
      .footer-cols{ grid-template-columns: 1fr; }
      .float-customer{ max-width: calc(100% - 18px); }
      .form-row{ grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; }
      .marquee-track{ animation:none !important; }
      .faq-body{ animation:none !important; }
    }

    .reveal{ opacity:0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
    .reveal.in{ opacity:1; transform: translateY(0); }