:root{
      --bg:#f7f8fb;
      --panel:#ffffff;
      --text:#14161a;
      --muted:#5a6372;
      --line:rgba(15,23,42,.10);
      --shadow: 0 12px 30px rgba(14,19,40,.10);
      --shadow-soft: 0 10px 24px rgba(14,19,40,.08);
      --primary:#2563eb;
      --primary-2:#7c3aed;
      --accent:#06b6d4;
      --good:#16a34a;
      --warn:#f59e0b;
      --radius:16px;
      --radius-lg:22px;
      --container: 1120px;
      --pad: 16px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans SC","PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      background: linear-gradient(180deg, #fbfcff 0%, #f7f8fb 30%, #f4f6fb 100%);
      color:var(--text);
    }
    a{color:inherit; text-decoration:none}
    .skip-link{
      position:absolute; left:-999px; top:10px;
      background:#fff; padding:10px 12px; border-radius:12px; border:1px solid var(--line);
      z-index:9999;
    }
    .skip-link:focus{left:12px}

    .container{
      width: min(var(--container), calc(100% - 2*var(--pad)));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(251,252,255,.78);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .nav-container{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding: 10px 0;
    }
    .brand{display:flex; align-items:center; gap:12px; min-width: 240px;}
    .brand-link{display:flex; align-items:center; gap:12px}
    .ai-page-logo{width:44px; height:auto; border-radius:14px; background: rgba(37,99,235,.06); padding:6px}
    .brand-meta{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:820; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted); margin-top:4px}

    .nav-desktop{display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:center}
    .nav-item{
      font-size:14px; color: rgba(20,22,26,.88);
      padding:10px 10px;
      border-radius:999px;
      transition: background .2s ease, transform .2s ease;
    }
    .nav-item:hover{
      background: rgba(37,99,235,.08);
      color:#0f1a3a;
      transform: translateY(-1px);
    }
    .nav-actions{display:flex; align-items:center; gap:10px}
    .icon-btn{
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.75);
      width:42px; height:42px; border-radius:14px;
      display:grid; place-items:center;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .icon-btn:active{transform: translateY(1px)}
    .nav-desktop{display:none}
    @media (min-width: 980px){
      .nav-desktop{display:flex}
      .icon-btn{display:none}
    }

    .icon-burger{
      width:18px; height:12px; position:relative;
    }
    .icon-burger::before,.icon-burger::after{
      content:""; position:absolute; left:0; right:0; height:2px; background: rgba(20,22,26,.85); border-radius:2px;
    }
    .icon-burger::before{top:0}
    .icon-burger::after{bottom:0}
    .icon-burger{border-top:2px solid rgba(20,22,26,.85); border-radius:2px}
    .icon-close{
      width:18px; height:18px; position:relative;
    }
    .icon-close::before,.icon-close::after{
      content:""; position:absolute; inset:0; margin:auto;
      width:18px; height:2px; background: rgba(20,22,26,.85); border-radius:2px;
      top:8px;
    }
    .icon-close::before{transform: rotate(45deg)}
    .icon-close::after{transform: rotate(-45deg)}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 11px 14px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.12);
      font-weight:700;
      font-size:14px;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn-wide{width:100%}
    .btn-primary{
      background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
      color:#fff;
      border-color: rgba(255,255,255,.18);
      box-shadow: 0 14px 30px rgba(37,99,235,.22);
    }
    .btn-primary:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(37,99,235,.28)}
    .btn-soft{
      background: rgba(37,99,235,.10);
      border-color: rgba(37,99,235,.20);
      color:#0f2a5c;
    }
    .btn-soft:hover{transform: translateY(-2px); background: rgba(37,99,235,.14)}
    .btn-ghost{
      background: rgba(255,255,255,.72);
      border-color: rgba(15,23,42,.12);
      color: rgba(20,22,26,.9);
    }
    .btn-ghost:hover{transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,23,42,.10); background: #fff}

    .mobile-nav-wrap{
      border-top: 1px solid rgba(15,23,42,.08);
      background: rgba(251,252,255,.95);
      backdrop-filter: blur(10px);
    }
    .mobile-nav{
      padding: 14px 0 18px;
    }
    .mobile-nav-head{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding: 4px 0 12px;
    }
    .mobile-title{font-weight:850}
    .mobile-nav-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding: 4px 0 12px;
    }
    .mobile-link{
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      font-weight:700;
      font-size:14px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .mobile-link:hover{transform: translateY(-2px); background:#fff; box-shadow: 0 10px 22px rgba(15,23,42,.10)}
    .mobile-nav-cta{display:flex; flex-direction:column; gap:10px}

    .hero{
      position:relative;
      overflow:hidden;
      padding: 34px 0 26px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:18px;
      align-items:start;
    }
    @media (min-width: 980px){
      .hero-grid{
        grid-template-columns: 1.15fr .85fr;
        gap:26px;
        align-items:stretch;
      }
      .hero{padding: 54px 0 36px}
    }

    .hero-copy{padding: 12px 0}
    .hero-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.08);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight:750;
      color: rgba(8,19,60,.92);
      font-size:13px;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #06b6d4, #7c3aed);
      box-shadow: 0 8px 18px rgba(124,58,237,.25);
    }
    .hero-title{
      margin: 14px 0 10px;
      font-size: clamp(30px, 4.2vw, 46px);
      line-height: 1.07;
      letter-spacing: -0.4px;
      font-weight: 920;
    }
    .hero-lead{
      margin: 0;
      color: rgba(20,22,26,.78);
      font-size: 15.5px;
      line-height: 1.65;
      max-width: 58ch;
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top: 18px;
    }

    .hero-fast{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top: 18px;
    }
    @media (min-width: 720px){
      .hero-fast{grid-template-columns: repeat(3, 1fr)}
    }
    .fast-item{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      border-radius: 18px;
      padding: 12px 12px;
      box-shadow: 0 10px 22px rgba(15,23,42,.05);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .fast-item:hover{transform: translateY(-3px); box-shadow: 0 18px 38px rgba(15,23,42,.10)}
    .fast-top{display:flex; align-items:center; gap:10px}
    .fast-icon{
      width:34px; height:34px;
      border-radius: 14px;
      display:grid; place-items:center;
      background: rgba(37,99,235,.10);
      border: 1px solid rgba(37,99,235,.18);
    }
    .fast-label{font-weight:850; font-size:14px}
    .fast-value{margin-top:8px; color: rgba(20,22,26,.74); font-size:13px; font-weight:650}

    .hero-panel{
      position:relative;
      border-radius: var(--radius-lg);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.60);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
      padding: 16px;
    }
    .panel-bg{
      position:absolute; inset:-60px -60px auto -60px;
      height:240px;
      background: radial-gradient(closest-side, rgba(6,182,212,.35), rgba(124,58,237,.18), rgba(37,99,235,.08), transparent 70%);
      pointer-events:none;
      filter: blur(0px);
      transform: translateZ(0);
    }
    .panel-card{
      position:relative;
      border-radius: 18px;
      padding: 14px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
    }
    .card-head{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .card-title{font-weight:920; letter-spacing:-.2px}
    .card-tag{
      font-size:12px;
      font-weight:800;
      padding:6px 10px;
      border-radius:999px;
      color: rgba(15,26,58,.95);
      border:1px solid rgba(6,182,212,.26);
      background: rgba(6,182,212,.10);
    }

    .matrix{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    @media (min-width: 720px){
      .matrix{grid-template-columns: 1fr 1fr}
    }
    .matrix-item{
      display:flex; align-items:flex-start; gap:12px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .matrix-item:hover{transform: translateY(-3px); box-shadow: 0 18px 34px rgba(15,23,42,.10); background:#fff}
    .matrix-icon{
      width:40px; height:40px;
      border-radius: 16px;
      display:grid; place-items:center;
      color: rgba(37,99,235,.95);
      background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.10));
      border:1px solid rgba(37,99,235,.18);
      flex:0 0 auto;
    }
    .matrix-name{font-weight:900}
    .matrix-desc{margin-top:4px; font-size:13px; color: rgba(20,22,26,.70); font-weight:650}

    .panel-cta{margin-top: 12px}
    .trust-line{
      display:flex; align-items:center; gap:10px;
      color: rgba(20,22,26,.72);
      font-weight:700;
      font-size:13px;
      margin-bottom: 12px;
    }
    .trust-dot{width:10px; height:10px; border-radius:50%; background: rgba(34,197,94,.95); box-shadow: 0 10px 18px rgba(34,197,94,.22)}
    .panel-actions{display:flex; flex-direction:column; gap:10px}
    @media (min-width: 980px){
      .panel-actions{flex-direction:row}
    }

    .panel-stats{
      position:relative;
      margin-top: 12px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
    }
    .stat{
      border-radius: 16px;
      padding: 12px 10px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      transition: transform .2s ease;
    }
    .stat:hover{transform: translateY(-3px)}
    .stat-num{font-weight:950; font-size:18px; letter-spacing:-.2px}
    .stat-label{margin-top:6px; color: rgba(20,22,26,.70); font-weight:700; font-size:12.5px}

    .hero-wave{
      position:absolute; left:50%; transform: translateX(-50%);
      bottom:-40px; width:1200px; height:120px;
      background: radial-gradient(closest-side, rgba(124,58,237,.13), transparent 70%);
      pointer-events:none;
    }

    .section{padding: 46px 0}
    .section-contrast{background: linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(37,99,235,.06) 18%, rgba(255,255,255,.0) 100%);}
    .section-contrast-2{background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(124,58,237,.06)); border-top:1px solid rgba(15,23,42,.06); border-bottom:1px solid rgba(15,23,42,.06)}
    .section-soft{background: rgba(255,255,255,.35)}
    .section-muted{background: rgba(255,255,255,.45)}
    .section-last{padding-bottom: 34px}

    .section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom: 18px; flex-wrap:wrap}
    .section-head.small{margin-bottom: 12px}
    .section-head h2, .faq-h2{margin:0; font-size: 28px; font-weight: 950; letter-spacing:-.3px}
    .section-sub{margin:0; color: rgba(20,22,26,.72); line-height:1.7; font-size: 14.5px; max-width: 70ch}
    .section-head.split{align-items:center}

    .segmented{
      display:flex; gap:8px;
      padding: 6px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
    }
    .seg-btn{
      border:0;
      background:transparent;
      padding: 10px 12px;
      border-radius: 999px;
      font-weight:850;
      color: rgba(20,22,26,.70);
      cursor:pointer;
      transition: background .18s ease, transform .18s ease, color .18s ease;
      font-size:13px;
      white-space:nowrap;
    }
    .seg-btn:hover{transform: translateY(-1px); color: rgba(20,22,26,.95)}
    .seg-btn.is-active{
      background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.12));
      border:1px solid rgba(37,99,235,.20);
      color: rgba(8,19,60,.98);
    }
    .tab-panels{margin-top: 10px}
    .panel{animation: fadeUp .25s ease}
    @keyframes fadeUp{from{opacity:.7; transform: translateY(8px)} to{opacity:1; transform: translateY(0)}}

    .grid-2{display:grid; grid-template-columns: 1fr; gap:16px}
    @media (min-width: 980px){ .grid-2{grid-template-columns: 1fr 1fr; gap:20px}}
    .grid-3{display:grid; grid-template-columns: 1fr; gap:14px}
    @media (min-width: 720px){ .grid-3{grid-template-columns: repeat(3, 1fr)}}

    .info-card, .cap-card, .match-card, .guide-card, .training-card, .net-card, .sector-card, .price-card, .case-card, .svc-card, .certbox, .bible-card, .article-card, .int-card, .tag-cloud-card, .safety-box, .qr-card, .contact-card, .join-card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 28px rgba(15,23,42,.06);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .info-card:hover, .cap-card:hover, .match-card:hover, .guide-card:hover, .sector-card:hover, .price-card:hover, .case-card:hover, .svc-card:hover, .qr-card:hover, .contact-card:hover, .join-card:hover, .bible-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
    }

    .in-view{}
    .check-list{list-style:none; padding:0; margin: 12px 0 0; display:grid; gap:10px}
    .check{color: var(--good); font-weight:950; margin-right:8px}
    .check-list li{display:flex; gap:10px; align-items:flex-start; color: rgba(20,22,26,.76); font-weight:700; line-height:1.45}

    .info-top{display:flex; flex-direction:column; gap:10px}
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
      padding: 7px 10px;
      border-radius: 999px;
      font-size:12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      color: rgba(20,22,26,.88);
    }
    .badge-accent{
      border-color: rgba(6,182,212,.25);
      background: rgba(6,182,212,.10);
      color: rgba(8,19,60,.98);
    }
    .badge-ok{
      border-color: rgba(22,163,74,.22);
      background: rgba(22,163,74,.10);
      color: rgba(10,60,22,.95);
      padding: 8px 10px;
      border-radius: 999px;
      font-weight:900;
      font-size:12px;
    }

    .info-title{font-weight:950; font-size:18px; letter-spacing:-.2px}

    .info-actions{display:flex; gap:12px; margin-top: 14px; flex-wrap:wrap}

    .timeline-wrap{padding:16px; border-radius: var(--radius-lg); border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.62); box-shadow: 0 12px 28px rgba(15,23,42,.06)}
    .timeline-head{display:flex; flex-direction:column; gap:8px; margin-bottom: 12px}
    .mini-title{font-size:12px; font-weight:950; color: rgba(37,99,235,.95); letter-spacing:.2px}
    .timeline-title{font-weight:950; font-size:18px}

    .timeline{list-style:none; padding:0; margin: 10px 0 0; display:grid; gap:14px}
    .t-item{display:flex; gap:12px; align-items:flex-start}
    .t-dot{width:14px; height:14px; border-radius:50%;
      background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(124,58,237,.85));
      box-shadow: 0 10px 22px rgba(37,99,235,.25);
      margin-top: 4px; flex:0 0 auto}
    .t-title{font-weight:950}
    .t-desc{color: rgba(20,22,26,.72); font-weight:700; margin-top:6px; line-height:1.55; font-size:14px}

    .network-callout{
      margin-top: 14px;
      display:flex; gap:12px; align-items:center;
      border-radius: 18px;
      background: rgba(37,99,235,.08);
      border:1px solid rgba(37,99,235,.16);
      padding: 12px 12px;
    }
    .callout-icon{width:40px; height:40px; border-radius:16px; display:grid; place-items:center; background: rgba(37,99,235,.12); color: rgba(37,99,235,.95); font-weight:1000}
    .callout-title{font-weight:950}
    .callout-desc{margin-top:4px; color: rgba(20,22,26,.72); font-weight:750; font-size:13px}

    .svc-card{padding:16px}
    .svc-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .svc-ico{
      width:44px; height:44px; border-radius:18px;
      display:grid; place-items:center;
      background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,182,212,.10));
      border:1px solid rgba(37,99,235,.18);
      font-size:18px;
      flex:0 0 auto;
    }
    .svc-title{margin:0; font-weight:950; letter-spacing:-.2px; font-size:16px}
    .svc-desc{margin:10px 0 0; color: rgba(20,22,26,.72); line-height:1.65; font-weight:700; font-size:14px}
    .svc-foot{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
    .chip{
      font-size:12px;
      font-weight:900;
      padding: 7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      color: rgba(20,22,26,.78);
    }

    .service-strip{
      margin-top: 16px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      padding: 14px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    @media (min-width: 900px){
      .service-strip{grid-template-columns: repeat(3, 1fr)}
    }
    .strip-item{padding: 12px; border-radius: 16px; border:1px solid rgba(15,23,42,.08); background: rgba(255,255,255,.68)}
    .strip-label{font-weight:950}
    .strip-desc{margin-top:6px; color: rgba(20,22,26,.72); font-weight:750; line-height:1.55; font-size:13.5px}

    .cap-title{font-weight:980; font-size:18px; letter-spacing:-.2px}
    .cap-desc{margin:10px 0 0; color: rgba(20,22,26,.72); font-weight:720; line-height:1.7}
    .tag-cloud{margin-top: 12px; display:flex; flex-wrap:wrap; gap:8px}
    .tag{
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(37,99,235,.08);
      border: 1px solid rgba(37,99,235,.14);
      color: rgba(8,19,60,.95);
      font-weight:900;
      font-size:12.5px;
    }
    .cap-list{margin-top: 12px; display:grid; gap:10px}
    .cap-li{display:flex; gap:12px; align-items:flex-start; padding: 10px 10px; border-radius: 14px; border:1px solid rgba(15,23,42,.08); background: rgba(255,255,255,.70)}
    .cap-num{
      width:32px; height:28px; border-radius: 12px;
      display:grid; place-items:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      font-weight:980; color: rgba(74,13,202,.95); flex:0 0 auto;
      font-size:12px;
    }
    .cap-li span:last-child{font-weight:850; color: rgba(20,22,26,.76); line-height:1.5}
    .cap-actions{display:flex; gap:12px; margin-top: 14px; flex-wrap:wrap}

    .cap-grid-3{margin-top: 14px; display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 820px){ .cap-grid-3{grid-template-columns: repeat(3,1fr)}}
    .mini-cap{padding: 14px; border-radius: var(--radius); border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.62)}
    .mini-cap-title{font-weight:980}
    .mini-cap-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65; font-size:14px}

    .flow{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    @media (min-width: 900px){
      .flow{grid-template-columns: repeat(4, 1fr)}
    }
    .flow-step{
      border-radius: var(--radius-lg);
      padding: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 28px rgba(15,23,42,.06);
      display:flex; gap:14px; align-items:flex-start;
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .flow-step:hover{transform: translateY(-4px); box-shadow: 0 20px 46px rgba(15,23,42,.12)}
    .flow-num{
      width:44px; height:44px; border-radius:18px;
      display:grid; place-items:center;
      font-weight:1000;
      color:#fff;
      background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(124,58,237,.9));
      box-shadow: 0 14px 26px rgba(37,99,235,.22);
      flex:0 0 auto;
    }
    .flow-title{font-weight:980; font-size:16px}
    .flow-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.6; font-size:14px}
    .flow-bottom{
      margin-top: 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .quote{
      display:flex; align-items:center; gap:12px;
      border-radius: var(--radius-lg);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      padding: 12px 14px;
      box-shadow: 0 12px 28px rgba(15,23,42,.05);
      max-width: 520px;
    }
    .quote-mark{font-size: 34px; line-height:1; color: rgba(37,99,235,.95); font-weight:1000}
    .quote-text{font-weight:950; letter-spacing:-.2px}

    .flow-actions{display:flex; gap:12px; flex-wrap:wrap}

    .align-start{align-items:start}

    .match-card{padding:18px}
    .match-head{display:flex; flex-direction:column; gap:6px; margin-bottom: 12px}
    .match-title{font-weight:980; font-size:18px}
    .match-sub{color: rgba(20,22,26,.72); font-weight:740; line-height:1.6; font-size:13.8px}

    .form{display:flex; flex-direction:column; gap:12px}
    .form-row{display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 720px){
      .form-row{grid-template-columns: 1fr 1fr}
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field-label{font-size:13px; font-weight:900; color: rgba(20,22,26,.78)}
    .field-input{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.82);
      outline:none;
      font-weight:750;
      color: rgba(20,22,26,.92);
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    }
    .field-input:focus{
      border-color: rgba(37,99,235,.32);
      box-shadow: 0 0 0 5px rgba(37,99,235,.14);
    }
    .field-textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.82);
      outline:none;
      font-weight:750;
      color: rgba(20,22,26,.92);
      transition: box-shadow .18s ease, border-color .18s ease;
      resize: vertical;
      min-height: 120px;
    }
    .field-textarea:focus{
      border-color: rgba(37,99,235,.32);
      box-shadow: 0 0 0 5px rgba(37,99,235,.14);
    }

    .form-foot{display:flex; flex-direction:column; gap:10px}
    .form-hint{min-height: 18px; color: rgba(16,185,129,.95); font-weight:850}

    .match-right{display:flex; flex-direction:column; gap:14px}
    .tag-cloud-card, .safety-box{padding:18px}
    .card-headline{display:flex; flex-direction:column; gap:6px}
    .right-title{font-weight:980; font-size:18px}
    .tag-grid{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-top: 12px}
    @media (min-width: 980px){ .tag-grid{grid-template-columns: 1fr 1fr 1fr 1fr} }
    .tag-btn{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      border-radius: 14px;
      padding: 10px 10px;
      font-weight:900;
      color: rgba(20,22,26,.80);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      text-align:left;
      min-height: 44px;
    }
    .tag-btn:hover{transform: translateY(-3px); background:#fff; box-shadow: 0 18px 34px rgba(15,23,42,.10); border-color: rgba(37,99,235,.24)}
    .safety-title{font-weight:980; font-size:18px}
    .safety-desc{margin-top: 10px; color: rgba(20,22,26,.72); line-height:1.7; font-weight:740}
    .safety-badges{display:flex; flex-wrap:wrap; gap:8px; margin-top: 12px}

    .quick-links{display:grid; gap:10px}
    .quick-link{
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:900;
      color: rgba(20,22,26,.80);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .quick-link:hover{transform: translateY(-3px); background:#fff; box-shadow: 0 18px 34px rgba(15,23,42,.10)}

    .sector-card{padding:16px}
    .sector-title{font-weight:980; font-size:17px}
    .sector-desc{margin-top:10px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65; font-size:14px}
    .sector-tags{display:flex; gap:8px; flex-wrap:wrap; margin-top: 12px}

    .compare-wrap{border-radius: var(--radius-lg); border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.62); box-shadow: 0 18px 46px rgba(15,23,42,.08); padding: 16px}
    .compare-top{display:grid; grid-template-columns: 1fr; gap:14px}
    @media (min-width: 980px){ .compare-top{grid-template-columns: 1fr .9fr} }
    .stars-card{
      padding: 16px;
      border-radius: var(--radius-lg);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
    }
    .stars-row{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .stars-title{font-weight:980}
    .stars-badge{
      padding: 8px 12px;
      border-radius: 999px;
      border:1px solid rgba(245,158,11,.24);
      background: rgba(245,158,11,.10);
      font-weight:1000;
      color: rgba(146,64,14,.95);
    }
    .rating-row{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top: 12px; flex-wrap:wrap}
    .rating-stars{font-size:18px; letter-spacing: 2px}
    .rating-stars span{color: rgba(245,158,11,.98)}
    .rating-score{
      display:flex; align-items:baseline; gap:8px;
      font-weight:1000;
      color: rgba(20,22,26,.92);
    }
    .score-num{font-size:34px}
    .score-total{color: rgba(20,22,26,.64); font-weight:950}
    .rating-desc{margin-top:10px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65}

    .compare-legend{
      padding: 16px;
      border-radius: var(--radius-lg);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      display:flex; flex-direction:column; gap:12px; justify-content:center;
    }
    .legend-item{display:flex; gap:10px; align-items:flex-start}
    .legend-dot{width:12px; height:12px; border-radius:50%; background: rgba(37,99,235,.92); box-shadow: 0 12px 22px rgba(37,99,235,.24); margin-top: 4px; flex:0 0 auto}
    .legend-text{font-weight:860; color: rgba(20,22,26,.72); line-height:1.6; font-size:14px}

    .compare-table-wrap{margin-top: 14px}
    .table-note{
      margin: 4px 0 10px;
      color: rgba(20,22,26,.68);
      font-weight:800;
      font-size:13.5px;
    }
    .table-scroll{overflow:auto; border-radius: 18px; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.72)}
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width: 860px;
    }
    .compare-table th, .compare-table td{
      padding: 14px 12px;
      border-bottom: 1px solid rgba(15,23,42,.08);
      text-align:left;
      vertical-align:top;
      font-weight:850;
      color: rgba(20,22,26,.86);
      font-size:14px;
    }
    .compare-table th{
      background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.06));
      color: rgba(8,19,60,.95);
      font-weight:1000;
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table tbody tr:hover td{background: rgba(37,99,235,.05)}
    .td-ok{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(22,163,74,.18);
      background: rgba(22,163,74,.10);
      color: rgba(10,60,22,.95);
      font-weight:1000;
    }

    .compare-actions{display:flex; gap:12px; margin-top: 12px; flex-wrap:wrap}

    .price-card{padding:16px}
    .price-card.featured{
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 20px 52px rgba(37,99,235,.14);
      position:relative;
    }
    .price-card.featured::after{
      content:"";
      position:absolute; inset:-1px -1px auto -1px;
      height: 4px;
      background: linear-gradient(90deg, #06b6d4, #2563eb, #7c3aed);
    }
    .price-top{display:flex; align-items:baseline; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .price-name{font-weight:1000; font-size:18px}
    .price-tag{color: rgba(20,22,26,.66); font-weight:820; font-size:13px}
    .price-value{margin-top: 12px; font-weight:950; color: rgba(8,19,60,.95)}
    .price-list{list-style:none; padding:0; margin: 12px 0 14px; display:grid; gap:10px}
    .price-list li{color: rgba(20,22,26,.72); font-weight:760}

    .price-bottom{margin-top: 16px; border-radius: var(--radius-lg); border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.62); padding: 14px}
    .small-grid{display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 900px){ .small-grid{grid-template-columns: repeat(3, 1fr)} }
    .small-info{padding: 10px 10px; border-radius: 16px; border:1px solid rgba(15,23,42,.08); background: rgba(255,255,255,.70)}
    .small-title{font-weight:980}
    .small-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.6; font-size:14px}

    .case-grid{display:grid; grid-template-columns: 1fr; gap:14px}
    @media (min-width: 900px){ .case-grid{grid-template-columns: repeat(4, 1fr)} }
    .case-card{display:flex; flex-direction:column; gap:10px}
    .case-top{display:flex; align-items:center; justify-content:space-between}
    .case-icon{
      width:44px; height:44px; border-radius:18px;
      display:grid; place-items:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      font-size:18px;
      flex:0 0 auto;
    }
    .case-title{font-weight:1000; letter-spacing:-.2px; font-size:15px}
    .case-meta{display:flex; flex-wrap:wrap; gap:8px}
    .case-desc{margin:0; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65; font-size:14px}
    .case-link{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      justify-content:flex-start;
      font-weight:950;
      color: rgba(37,99,235,.98);
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.08);
      transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .case-link:hover{transform: translateY(-2px); background: rgba(37,99,235,.12); box-shadow: 0 14px 30px rgba(37,99,235,.14)}

    .article-grid{display:grid; grid-template-columns: 1fr; gap:14px; align-items:start}
    @media (min-width: 900px){ .article-grid{grid-template-columns: 1fr 1.2fr} }
    .article-card{padding:18px}
    .article-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .article-badge{
      font-weight:1000;
      font-size:12px;
      padding: 8px 10px;
      border-radius:999px;
      border:1px solid rgba(37,99,235,.22);
      background: rgba(37,99,235,.10);
      color: rgba(8,19,60,.95);
    }
    .article-title{font-weight:1000; font-size:16px; letter-spacing:-.2px}
    .article-desc{margin: 10px 0 0; color: rgba(20,22,26,.72); font-weight:740; line-height:1.7}
    .article-actions{margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap}
    .link-btn{
      display:inline-flex; align-items:center; justify-content:center;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(37,99,235,.20);
      background: rgba(37,99,235,.08);
      font-weight:950;
      color: rgba(8,19,60,.95);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .link-btn:hover{transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,99,235,.14); background: rgba(37,99,235,.12)}
    .link-btn-ghost{background: rgba(255,255,255,.72); border-color: rgba(15,23,42,.12); color: rgba(20,22,26,.86)}
    .link-btn-ghost:hover{background:#fff}

    .article-list{display:flex; flex-direction:column; gap:10px}
    .article-row{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .article-row:hover{transform: translateY(-3px); background:#fff; box-shadow: 0 18px 34px rgba(15,23,42,.10)}
    .row-body{flex:1 1 auto}
    .row-title{font-weight:1000}
    .row-sub{margin-top:6px; color: rgba(20,22,26,.70); font-weight:740; font-size:13px; line-height:1.4}
    .row-dot{width:10px; height:10px; border-radius:50%; background: rgba(6,182,212,.95); box-shadow: 0 10px 18px rgba(6,182,212,.20)}
    .row-arrow{color: rgba(37,99,235,.95); font-weight:1000}

    .brand-links{margin-top: 16px; padding: 14px; border-radius: var(--radius-lg); border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.62)}
    .brand-links-title{font-weight:1000; margin-bottom: 10px}
    .friend-grid{display:flex; gap:10px; flex-wrap:wrap}
    .friend-link{
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      font-weight:950;
      color: rgba(20,22,26,.80);
      transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .friend-link:hover{transform: translateY(-2px); background:#fff; box-shadow: 0 14px 30px rgba(15,23,42,.10)}

    .network-grid{display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 900px){ .network-grid{grid-template-columns: repeat(4,1fr)} }
    .net-card{padding:16px; min-height: 118px}
    .net-icon{
      width:44px; height:44px; border-radius:18px;
      display:grid; place-items:center;
      background: rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.18);
      color: rgba(8,40,52,.95);
      font-size:18px;
      font-weight:1000;
    }
    .net-title{margin-top:10px; font-weight:1000}
    .net-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.6; font-size:14px}

    .training-card{padding:18px}
    .training-title{font-weight:1000; font-size:18px}
    .training-desc{margin-top:10px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.7}
    .pill-list{list-style:none; padding:0; margin: 12px 0 0; display:flex; flex-wrap:wrap; gap:10px}
    .pill{
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.08);
      color: rgba(8,19,60,.95);
      font-weight:1000;
      font-size:13px;
    }
    .training-cta{display:flex; gap:12px; margin-top: 14px; flex-wrap:wrap}

    .training-right{display:flex; flex-direction:column; gap:14px}
    .cert-steps{padding:18px}
    .cert-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top: 12px}
    .cert-item{
      border-radius: 18px;
      padding: 12px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
    }
    .cert-ico{
      width:42px; height:42px; border-radius:18px;
      display:grid; place-items:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      font-weight:1000;
      color: rgba(74,13,202,.95);
    }
    .cert-name{margin-top:10px; font-weight:1000}
    .cert-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.6; font-size:13.5px}
    .note-box{padding:16px; border-radius: var(--radius-lg); border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.62)}
    .note-title{font-weight:1000}
    .note-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65; font-size:14px}

    .train-left,.train-right{display:flex; flex-direction:column; gap:14px}
    .module-title{font-weight:1000; font-size:18px}
    .muted{color: rgba(20,22,26,.72); font-weight:740; line-height:1.7; margin: 10px 0 0}

    .train-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top: 12px}
    @media (min-width: 980px){ .train-grid{grid-template-columns: repeat(2,1fr)} }
    .train-item{
      padding: 14px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
    }
    .train-ico{
      width:42px; height:42px; border-radius:18px;
      display:grid; place-items:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      font-weight:1000;
      color: rgba(8,19,60,.95);
    }
    .train-name{margin-top:10px; font-weight:1000}
    .train-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.6; font-size:13.8px}

    .certbox{padding:18px}
    .certbox-head{display:flex; flex-direction:column; gap:6px}
    .certbox-title{font-weight:1000; font-size:18px}
    .certbox-sub{color: rgba(20,22,26,.72); font-weight:740; line-height:1.65}
    .certbox-list{list-style:none; padding:0; margin: 12px 0 0; display:grid; gap:10px}
    .certbox-list li{padding: 10px 12px; border-radius: 14px; border:1px solid rgba(15,23,42,.08); background: rgba(255,255,255,.70); font-weight:900; color: rgba(20,22,26,.80)}
    .certbox-cta{display:flex; gap:12px; margin-top: 14px; flex-wrap:wrap}

    .train-mini{padding:18px}
    .mini-bullets{margin-top: 12px; display:grid; gap:10px}
    .mini-bullet{display:flex; gap:10px; align-items:flex-start; font-weight:900; color: rgba(20,22,26,.80); line-height:1.6}
    .b-dot{width:10px; height:10px; border-radius:50%; background: rgba(124,58,237,.90); box-shadow: 0 12px 22px rgba(124,58,237,.20); margin-top: 6px; flex:0 0 auto}

    .faq-wrap{padding:0; border-radius: var(--radius-lg); overflow:hidden}
    .faq-head{padding: 0 4px 12px}
    .faq-h2{font-size: 24px; margin-top: 6px}
    .accordion{display:flex; flex-direction:column; gap:10px}
    .acc-item{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      background: transparent;
      border:0;
      padding: 14px 14px;
      text-align:left;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      font-weight:1000;
      color: rgba(20,22,26,.88);
      font-size:14.5px;
    }
    .acc-icon{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      position:relative;
      flex:0 0 auto;
    }
    .acc-icon::before,.acc-icon::after{
      content:""; position:absolute; left:50%; top:50%;
      width:14px; height:2px; background: rgba(37,99,235,.95); border-radius:2px;
      transform: translate(-50%,-50%);
    }
    .acc-icon::after{
      width:2px; height:14px;
      background: rgba(37,99,235,.95);
      transition: transform .18s ease, opacity .18s ease;
    }
    .acc-btn[aria-expanded="true"] .acc-icon::after{transform: translate(-50%,-50%) scaleY(0); opacity:.0}
    .acc-panel{
      padding: 0 14px 14px;
      color: rgba(20,22,26,.72);
      font-weight:740;
      line-height:1.7;
      font-size:14px;
    }

    .faq-bottom{padding-top: 14px}
    .faq-cta{display:flex; gap:12px; flex-wrap:wrap}

    .ai-bible{margin-top: 18px; padding: 18px; border-radius: var(--radius-lg); border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.58)}
    .bible-head h2{margin:0; font-size: 22px; font-weight:1000}
    .bible-grid{margin-top: 14px; display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 900px){ .bible-grid{grid-template-columns: repeat(4,1fr)} }
    .bible-card{padding:14px}
    .bible-title{font-weight:1000}
    .bible-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65; font-size:14px}

    .guide-card{padding:18px}
    .guide-title{font-weight:1000; font-size:18px}
    .guide-links{margin-top: 12px; display:grid; grid-template-columns: 1fr 1fr; gap:10px}
    @media (min-width: 980px){ .guide-links{grid-template-columns: 1fr 1fr 1fr} }
    .guide-link{
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:950;
      color: rgba(20,22,26,.80);
      transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
      text-align:center;
    }
    .guide-link:hover{transform: translateY(-3px); background:#fff; box-shadow: 0 18px 34px rgba(15,23,42,.10)}
    .guide-foot{margin-top: 14px; display:flex; gap:12px; flex-wrap:wrap}

    .join-grid{display:grid; grid-template-columns: 1fr; gap:14px}
    @media (min-width: 980px){ .join-grid{grid-template-columns: 1fr 1fr} }
    .join-card{padding:18px}
    .join-title{font-weight:1000; font-size:18px}
    .join-actions{display:flex; gap:12px; margin-top: 14px; flex-wrap:wrap}
    .join-right{display:flex; flex-direction:column; gap:14px}
    .network-points{padding:18px}
    .points-grid{margin-top: 12px; display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 980px){ .points-grid{grid-template-columns: 1fr 1fr 1fr} }
    .point-card{
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding: 14px;
    }
    .point-ico{
      width:44px; height:44px; border-radius:18px;
      display:grid; place-items:center;
      background: rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.18);
      font-weight:1000;
      color: rgba(8,40,52,.95);
      font-size:18px;
    }
    .point-title{margin-top:10px; font-weight:1000}
    .point-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.6; font-size:14px}
    .join-mini-form{padding:18px}
    .join-mini-title{font-weight:1000; font-size:18px}
    .join-mini-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.7}
    .inline-form{margin-top: 12px; display:grid; grid-template-columns: 1fr; gap:10px}
    @media (min-width: 980px){ .inline-form{grid-template-columns: 1fr 1fr 1fr auto; align-items:end} }
    .inline-field{display:flex; flex-direction:column; gap:8px}

    .section-cta{padding: 54px 0 56px}
    .contact-grid{display:grid; grid-template-columns: 1fr; gap:16px}
    @media (min-width: 980px){ .contact-grid{grid-template-columns: 1fr 1fr; gap:18px} }
    .contact-left{display:flex; flex-direction:column; gap:14px}
    .contact-cards{display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 720px){ .contact-cards{grid-template-columns: 1fr 1fr} }
    .contact-card{padding:16px}
    .contact-card-top{display:flex; align-items:center; gap:12px}
    .contact-ico{
      width:42px; height:42px; border-radius:18px;
      display:grid; place-items:center;
      background: rgba(37,99,235,.10);
      border:1px solid rgba(37,99,235,.18);
      font-size:18px;
      font-weight:1000;
      color: rgba(8,19,60,.95);
      flex:0 0 auto;
    }
    .contact-card-title{font-weight:1000}
    .contact-value{margin-top:10px; color: rgba(20,22,26,.82); font-weight:900; line-height:1.5}
    .contact-link{color: rgba(37,99,235,.98); font-weight:950}
    .sep{margin: 0 6px; color: rgba(20,22,26,.45); font-weight:900}

    .contact-callout{
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      padding: 14px 14px;
      border-radius: var(--radius-lg);
      border:1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.08);
    }
    .callout-left{display:flex; gap:12px; align-items:flex-start}
    .callout-ico{
      width:44px; height:44px; border-radius:18px;
      display:grid; place-items:center;
      background: rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.18);
      font-weight:1000;
      color: rgba(8,40,52,.95);
      flex:0 0 auto;
    }
    .callout-title{font-weight:1000}
    .callout-desc{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65; font-size:14px}
    .contact-right{display:flex; flex-direction:column; gap:14px}

    .qr-card{padding:18px}
    .qr-head{display:flex; flex-direction:column; gap:6px}
    .qr-title{font-weight:1000; font-size:18px}
    .qr-wrap{
      margin-top: 12px;
      border-radius: 18px;
      border:1px dashed rgba(15,23,42,.18);
      background: rgba(255,255,255,.62);
      padding: 14px;
      display:grid; place-items:center;
    }
    .qr-img{width: 220px; max-width: 100%; height:auto; border-radius: 14px}
    .qr-foot{margin-top: 12px; display:grid; gap:10px}
    .qr-item{display:flex; align-items:center; gap:10px; color: rgba(20,22,26,.80); font-weight:900}
    .qr-dot{width:10px; height:10px; border-radius:50%; background: rgba(124,58,237,.92); box-shadow: 0 12px 22px rgba(124,58,237,.20)}
    .contact-form-card{padding:18px}
    .form-card-title{font-weight:1000; font-size:18px}
    .form-card-sub{margin-top:8px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.65}
    .form-compact .field-textarea{min-height: 96px}
    .form-compact .form-row{grid-template-columns: 1fr 1fr}

    .integrated-grid{display:grid; grid-template-columns: 1fr; gap:12px}
    @media (min-width: 980px){ .integrated-grid{grid-template-columns: repeat(3,1fr)} }
    .int-card{padding:18px}
    .int-title{font-weight:1000; font-size:18px}
    .int-desc{margin-top:10px; color: rgba(20,22,26,.72); font-weight:740; line-height:1.7}
    .int-tags{display:flex; flex-wrap:wrap; gap:8px; margin-top: 12px}

    .site-footer{
      background: #0b1220;
      color:#e8edf7;
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 28px 0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:16px;
      align-items:start;
    }
    @media (min-width: 980px){ .footer-grid{grid-template-columns: 1fr 1fr; gap:22px} }
    .foot-left, .foot-right{border-radius: var(--radius-lg)}
    .foot-brand{display:flex; align-items:center; gap:12px}
    .footer-logo{width:46px; height:auto; border-radius:16px; background: rgba(255,255,255,.08); padding:6px; border:1px solid rgba(255,255,255,.10)}
    .foot-name{font-weight:1000; font-size:18px; color:#fff}
    .foot-sub{margin-top:4px; color: rgba(232,237,247,.78); font-weight:750; font-size:13.5px}
    .foot-links{margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap}
    .foot-links a{
      color: rgba(232,237,247,.82);
      font-weight:850;
      font-size:13px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      transition: transform .18s ease, background .18s ease;
    }
    .foot-links a:hover{transform: translateY(-2px); background: rgba(255,255,255,.10)}
    .foot-copy{margin-top: 14px; color: rgba(232,237,247,.70); font-weight:800; font-size:13px}

    .foot-cta{
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      padding: 16px;
    }
    .foot-cta-title{font-weight:1000; font-size:16px; color:#fff}
    .foot-cta-desc{margin-top:8px; color: rgba(232,237,247,.78); font-weight:750; line-height:1.65; font-size:13.8px}
    .foot-cta-actions{margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap}

    .site-footer .btn-primary{box-shadow: none}
    .site-footer .btn-soft{
      background: rgba(37,99,235,.18);
      border-color: rgba(37,99,235,.30);
      color:#fff;
    }
    .site-footer .btn-ghost{
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.12);
      color:#fff;
    }

    .foot-contact{
      margin-top: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      padding: 16px;
    }
    .foot-contact-row{
      display:flex; justify-content:space-between; gap:12px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-weight:900;
    }
    .foot-contact-row:last-child{border-bottom:0}
    .foot-contact-key{color: rgba(232,237,247,.72)}
    .foot-contact-val{color: rgba(255,255,255,.92)}
    .site-footer .contact-link{color:#fff; text-decoration: underline; text-underline-offset: 3px}

    .float-bar{
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 60;
      display:flex;
      flex-direction:row;
      gap:10px;
      align-items:center;
    }
    @media (max-width: 720px){
      .float-bar{left: 14px; right: 14px; justify-content:space-between}
      .float-text{display:none}
    }
    .float-item{
      display:flex; align-items:center; gap:10px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.80);
      box-shadow: 0 18px 44px rgba(15,23,42,.10);
      font-weight:1000;
      color: rgba(20,22,26,.86);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .float-item:hover{transform: translateY(-3px); box-shadow: 0 24px 60px rgba(15,23,42,.14)}
    .float-primary{
      background: linear-gradient(135deg, rgba(37,99,235,.96), rgba(124,58,237,.92));
      border-color: rgba(255,255,255,.18);
      color: #fff;
    }
    .float-ico{
      width:28px; height:28px; border-radius:12px;
      display:grid; place-items:center;
      background: rgba(37,99,235,.12);
      border:1px solid rgba(37,99,235,.18);
    }
    .float-primary .float-ico{background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.18)}
    .float-top{
      width:46px; height:46px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.80);
      box-shadow: 0 18px 44px rgba(15,23,42,.10);
      cursor:pointer;
      font-weight:1000;
      transition: transform .18s ease;
      display:grid; place-items:center;
      color: rgba(20,22,26,.86);
    }
    .float-top:hover{transform: translateY(-3px)}