:root{
      --theme:#0B3D91;
      --theme-dark:#06265f;
      --theme-soft:#eaf1ff;
      --accent:#d61f69;
      --accent-dark:#a90f4d;
      --accent-soft:#fff0f6;
      --ink:#172033;
      --muted:#667085;
      --line:#e6e9ef;
      --surface:#ffffff;
      --page:#f5f6f8;
      --success:#16835f;
      --warning:#b36b00;
      --shadow:0 18px 50px rgba(24,32,51,.09);
      --shadow-soft:0 10px 28px rgba(24,32,51,.07);
      --radius:18px;
      --container:1200px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:#fff;
      font-family:"Microsoft YaHei","PingFang SC","Noto Sans SC",Arial,sans-serif;
      line-height:1.65;
      -webkit-font-smoothing:antialiased;
    }
    body.drawer-locked{overflow:hidden}
    img{display:block;max-width:100%}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{cursor:pointer}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin:0 0 12px;
      color:var(--theme);
      font-size:13px;
      font-weight:800;
      letter-spacing:.08em;
    }
    .eyebrow::before{
      width:22px;
      height:3px;
      border-radius:99px;
      background:currentColor;
      content:"";
    }
    .section-heading{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-heading h2{
      margin:0;
      font-size:clamp(28px,3vw,42px);
      line-height:1.2;
      letter-spacing:-.04em;
    }
    .section-heading p{
      max-width:620px;
      margin:10px 0 0;
      color:var(--muted);
    }
    .section-more{
      display:inline-flex;
      flex:0 0 auto;
      align-items:center;
      gap:8px;
      color:var(--theme);
      font-weight:800;
    }
    .section-more::after{content:"→";transition:transform .2s ease}
    .section-more:hover::after{transform:translateX(4px)}
    .btn{
      display:inline-flex;
      min-height:46px;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:10px 20px;
      border:1px solid transparent;
      border-radius:12px;
      font-weight:800;
      transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      color:#fff;
      background:var(--theme);
      box-shadow:0 10px 22px rgba(11,61,145,.2);
    }
    .btn-primary:hover{background:var(--theme-dark)}
    .btn-accent{
      color:#fff;
      background:var(--accent);
      box-shadow:0 10px 24px rgba(214,31,105,.22);
    }
    .btn-accent:hover{background:var(--accent-dark)}
    .btn-light{
      color:var(--theme);
      border-color:#dce6f8;
      background:#fff;
    }

    .topbar{
      position:relative;
      z-index:110;
      color:#dce7fb;
      background:var(--theme-dark);
      font-size:13px;
    }
    .topbar-inner{
      min-height:36px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .topbar-welcome{
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .topbar-contact{
      display:flex;
      align-items:center;
      gap:20px;
    }
    .topbar-contact a{
      display:inline-flex;
      align-items:center;
      gap:7px;
      transition:color .2s ease;
    }
    .topbar-contact a:hover{color:#fff}

    .header{
      position:sticky;
      z-index:100;
      top:0;
      border-bottom:1px solid rgba(230,233,239,.9);
      background:rgba(255,255,255,.96);
      box-shadow:0 4px 18px rgba(24,32,51,.04);
      backdrop-filter:blur(14px);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:28px;
    }
    .logo{
      display:flex;
      flex:0 0 auto;
      align-items:center;
      gap:11px;
      max-width:250px;
      color:var(--theme-dark);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:10px;
    }
    .logo span{
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .main-nav{
      align-self:stretch;
      margin-left:auto;
    }
    .nav-list{
      height:100%;
      display:flex;
      align-items:stretch;
      gap:2px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .nav-item{
      position:relative;
      display:flex;
      align-items:stretch;
    }
    .nav-link{
      position:relative;
      display:flex;
      align-items:center;
      gap:6px;
      padding:0 13px;
      color:#344054;
      font-size:15px;
      font-weight:750;
      white-space:nowrap;
    }
    .nav-link::after{
      position:absolute;
      right:13px;
      bottom:13px;
      left:13px;
      height:3px;
      border-radius:99px;
      background:var(--theme);
      content:"";
      opacity:0;
      transform:scaleX(.35);
      transition:.2s ease;
    }
    .nav-link:hover,.nav-item:focus-within>.nav-link{color:var(--theme)}
    .nav-link:hover::after,.nav-item:focus-within>.nav-link::after{
      opacity:1;
      transform:scaleX(1);
    }
    .nav-link.has-arrow{padding-right:25px}
    .nav-link.has-arrow span::after{
      display:inline-block;
      width:6px;
      height:6px;
      margin:0 0 3px 8px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      content:"";
      transform:rotate(45deg);
    }
    .dropdown-panel,.mega-menu{
      position:absolute;
      top:100%;
      left:50%;
      visibility:hidden;
      opacity:0;
      transform:translate(-50%,12px);
      transition:opacity .18s ease,transform .18s ease,visibility .18s;
      pointer-events:none;
    }
    .dropdown-panel::before,.mega-menu::before{
      position:absolute;
      right:0;
      bottom:100%;
      left:0;
      height:10px;
      content:"";
    }
    .nav-item:hover>.dropdown-panel,
    .nav-item:focus-within>.dropdown-panel,
    .nav-item:hover>.mega-menu,
    .nav-item:focus-within>.mega-menu{
      visibility:visible;
      opacity:1;
      transform:translate(-50%,0);
      pointer-events:auto;
    }
    .dropdown-panel{
      width:340px;
      padding:14px;
      border:1px solid var(--line);
      border-radius:0 0 16px 16px;
      background:#fff;
      box-shadow:var(--shadow);
    }
    .dropdown-title{
      display:block;
      padding:4px 10px 10px;
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .dropdown-panel>a:not(.dropdown-main){
      display:block;
      padding:10px;
      border-radius:9px;
      color:#344054;
      font-size:14px;
      font-weight:700;
    }
    .dropdown-panel>a:not(.dropdown-main):hover{
      color:var(--theme);
      background:var(--theme-soft);
    }
    .dropdown-main{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-top:8px;
      padding:10px;
      border-top:1px solid var(--line);
      color:var(--theme);
      font-size:14px;
      font-weight:850;
    }
    .mega-menu{
      width:min(980px,calc(100vw - 40px));
      padding:22px;
      border:1px solid var(--line);
      border-radius:0 0 20px 20px;
      background:#fff;
      box-shadow:var(--shadow);
    }
    .mega-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-bottom:17px;
      padding-bottom:14px;
      border-bottom:1px solid var(--line);
    }
    .mega-head strong{font-size:18px}
    .mega-head span{color:var(--muted);font-size:13px}
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }
    .mega-card{
      min-width:0;
      padding:14px;
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
      transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
    }
    .mega-card:hover{
      border-color:#b9cbed;
      box-shadow:var(--shadow-soft);
      transform:translateY(-2px);
    }
    .mega-card-top{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:0;
    }
    .mega-card img{
      flex:0 0 auto;
      width:42px;
      height:42px;
      border-radius:9px;
      object-fit:cover;
      background:#f2f4f7;
    }
    .mega-card strong{
      display:block;
      overflow:hidden;
      color:#1d2939;
      font-size:14px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .mega-card p{
      display:-webkit-box;
      overflow:hidden;
      margin:8px 0 0;
      color:var(--muted);
      font-size:12px;
      line-height:1.55;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .mega-meta{
      display:flex;
      flex-wrap:wrap;
      gap:5px 10px;
      margin-top:8px;
      color:#667085;
      font-size:11px;
    }
    .mega-rating{color:var(--warning);font-weight:800}
    .mega-categories{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
    }
    .mega-categories a{
      padding:7px 11px;
      border-radius:999px;
      color:var(--theme);
      background:var(--theme-soft);
      font-size:12px;
      font-weight:800;
    }
    .mega-video-card{padding:0;overflow:hidden}
    .mega-video-card img{
      width:100%;
      height:105px;
      border-radius:0;
    }
    .mega-video-copy{padding:11px 12px 13px}
    .mega-video-duration{
      display:inline-flex;
      margin-top:7px;
      color:var(--accent);
      font-size:11px;
      font-weight:800;
    }
    .mega-tool-card .mega-card-top img{
      object-fit:contain;
      padding:6px;
    }
    .mega-footer{
      display:flex;
      align-items:center;
      justify-content:center;
      margin-top:16px;
      padding:11px;
      border-radius:10px;
      color:var(--theme);
      background:var(--theme-soft);
      font-size:13px;
      font-weight:850;
    }
    .header-btns{
      display:flex;
      flex:0 0 auto;
      align-items:center;
      gap:9px;
    }
    .header-btns>a{
      display:inline-flex;
      min-height:40px;
      align-items:center;
      justify-content:center;
      padding:8px 14px;
      border-radius:10px;
      font-size:14px;
      font-weight:850;
    }
    .member-entry{
      color:var(--theme);
      border:1px solid #d8e3f7;
      background:#fff;
    }
    .account-entry{color:#fff;background:var(--theme)}
    .hamburger{
      display:none;
      width:42px;
      height:42px;
      padding:10px;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
    }
    .hamburger span{
      display:block;
      width:100%;
      height:2px;
      margin:4px 0;
      border-radius:9px;
      background:var(--ink);
      transition:.2s ease;
    }
    .hamburger.active span:nth-child(1){transform:translateY(6px) rotate(45deg)}
    .hamburger.active span:nth-child(2){opacity:0}
    .hamburger.active span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

    .drawer-overlay{
      position:fixed;
      z-index:198;
      inset:0;
      visibility:hidden;
      background:rgba(10,18,34,.58);
      opacity:0;
      transition:.25s ease;
    }
    .drawer-overlay.open{visibility:visible;opacity:1}
    .mobile-drawer{
      position:fixed;
      z-index:199;
      top:0;
      right:0;
      width:min(390px,90vw);
      height:100%;
      overflow-y:auto;
      background:#fff;
      box-shadow:-22px 0 60px rgba(13,25,48,.24);
      transform:translateX(105%);
      transition:transform .25s ease;
    }
    .mobile-drawer.open{transform:translateX(0)}
    .drawer-head{
      position:sticky;
      z-index:2;
      top:0;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto auto;
      align-items:center;
      gap:8px;
      padding:16px;
      border-bottom:1px solid var(--line);
      background:#fff;
    }
    .drawer-head>a{
      min-width:0;
      padding:9px 11px;
      border-radius:9px;
      color:var(--theme);
      background:var(--theme-soft);
      font-size:13px;
      font-weight:850;
      text-align:center;
    }
    .drawer-close{
      width:38px;
      height:38px;
      border:0;
      border-radius:9px;
      color:#344054;
      background:#f2f4f7;
      font-size:25px;
      line-height:1;
    }
    .drawer-menu{padding:12px 16px 28px}
    .drawer-link,.drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:13px 10px;
      border:0;
      border-bottom:1px solid #eef0f4;
      color:#253047;
      background:transparent;
      font-weight:800;
      text-align:left;
    }
    .drawer-toggle::after{
      width:8px;
      height:8px;
      margin-right:4px;
      border-right:2px solid #98a2b3;
      border-bottom:2px solid #98a2b3;
      content:"";
      transform:rotate(45deg);
      transition:.2s ease;
    }
    .drawer-toggle.active{color:var(--theme)}
    .drawer-toggle.active::after{transform:rotate(225deg)}
    .drawer-submenu{
      display:none;
      padding:6px 0 10px 13px;
      border-bottom:1px solid #eef0f4;
    }
    .drawer-submenu.open{display:block}
    .drawer-submenu a{
      display:block;
      padding:9px 10px;
      border-left:2px solid #e8edf6;
      color:var(--muted);
      font-size:13px;
    }
    .drawer-submenu a:hover{
      color:var(--theme);
      border-left-color:var(--theme);
      background:var(--theme-soft);
    }

    .hero-layout-15{
      position:relative;
      overflow:hidden;
      padding:76px 0 58px;
      background:
        radial-gradient(circle at 10% 12%,rgba(214,31,105,.12),transparent 25%),
        radial-gradient(circle at 90% 18%,rgba(11,61,145,.08),transparent 27%),
        #f4f5f7;
    }
    .hero-layout-15::before{
      position:absolute;
      top:90px;
      left:50%;
      width:680px;
      height:180px;
      border-radius:50%;
      background:rgba(214,31,105,.07);
      filter:blur(70px);
      content:"";
      transform:translateX(-50%);
    }
    .hero-layout-15 .hero-heading{
      position:relative;
      max-width:870px;
      margin:0 auto;
      text-align:center;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:15px;
      padding:7px 12px;
      border:1px solid rgba(214,31,105,.16);
      border-radius:999px;
      color:var(--accent-dark);
      background:rgba(255,255,255,.78);
      font-size:13px;
      font-weight:850;
    }
    .hero-kicker::before{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(214,31,105,.1);
      content:"";
    }
    .hero-layout-15 h1{
      margin:0;
      color:#202537;
      font-size:clamp(38px,6vw,70px);
      line-height:1.07;
      letter-spacing:-.055em;
    }
    .hero-layout-15 h1 em{
      color:var(--accent);
      font-style:normal;
    }
    .hero-layout-15 .hero-intro{
      max-width:710px;
      margin:20px auto 0;
      color:#667085;
      font-size:17px;
    }
    .hero-filters{
      position:relative;
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:9px;
      margin:27px auto 31px;
    }
    .hero-filters a{
      padding:9px 14px;
      border:1px solid #e2e5ea;
      border-radius:999px;
      color:#4b5568;
      background:rgba(255,255,255,.86);
      font-size:13px;
      font-weight:800;
      box-shadow:0 5px 16px rgba(24,32,51,.04);
      transition:.2s ease;
    }
    .hero-filters a:hover,.hero-filters a:first-child{
      color:#fff;
      border-color:var(--accent);
      background:var(--accent);
      transform:translateY(-2px);
    }
    .waterfall-preview{
      position:relative;
      columns:4 250px;
      column-gap:18px;
      max-height:685px;
      overflow:hidden;
    }
    .waterfall-preview::after{
      position:absolute;
      right:0;
      bottom:0;
      left:0;
      height:150px;
      background:linear-gradient(transparent,#f4f5f7 88%);
      content:"";
      pointer-events:none;
    }
    .waterfall-card{
      display:inline-block;
      width:100%;
      margin:0 0 18px;
      overflow:hidden;
      border:1px solid rgba(226,229,234,.9);
      border-radius:17px;
      background:#fff;
      box-shadow:0 12px 32px rgba(30,37,55,.08);
      break-inside:avoid;
      transition:transform .22s ease,box-shadow .22s ease;
    }
    .waterfall-card:hover{
      z-index:1;
      box-shadow:0 20px 42px rgba(30,37,55,.13);
      transform:translateY(-4px);
    }
    .waterfall-card:nth-child(3n+1) .waterfall-image{height:210px}
    .waterfall-card:nth-child(3n+2) .waterfall-image{height:145px}
    .waterfall-card:nth-child(3n) .waterfall-image{height:178px}
    .waterfall-image{
      position:relative;
      overflow:hidden;
      background:linear-gradient(135deg,#f8d9e7,#dce6f8);
    }
    .waterfall-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .35s ease;
    }
    .waterfall-card:hover .waterfall-image img{transform:scale(1.04)}
    .waterfall-label{
      position:absolute;
      top:12px;
      left:12px;
      padding:5px 9px;
      border-radius:999px;
      color:#fff;
      background:rgba(169,15,77,.9);
      font-size:11px;
      font-weight:850;
      backdrop-filter:blur(6px);
    }
    .waterfall-body{padding:16px}
    .waterfall-body h2{
      display:-webkit-box;
      overflow:hidden;
      margin:0;
      color:#202537;
      font-size:17px;
      line-height:1.45;
      letter-spacing:-.02em;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .waterfall-body p{
      display:-webkit-box;
      overflow:hidden;
      margin:9px 0 13px;
      color:#697386;
      font-size:13px;
      line-height:1.7;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }
    .waterfall-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding-top:11px;
      border-top:1px solid #f0f1f4;
      color:#8a93a3;
      font-size:12px;
    }
    .waterfall-heat{
      display:inline-flex;
      align-items:center;
      gap:5px;
      color:var(--accent);
      font-weight:850;
    }
    .waterfall-heat::before{content:"●";font-size:9px}
    .hero-bottom-cta{
      position:relative;
      z-index:2;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:15px;
      margin-top:23px;
      text-align:center;
    }
    .hero-bottom-cta span{color:#667085;font-size:14px}
    .hero-bottom-cta a{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--accent);
      font-weight:900;
    }
    .hero-bottom-cta a::after{content:"→"}

    .trust-strip{
      border-bottom:1px solid var(--line);
      background:#fff;
    }
    .trust-strip-inner{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      min-height:112px;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:13px;
      padding:20px;
      border-right:1px solid var(--line);
    }
    .trust-item:first-child{border-left:1px solid var(--line)}
    .trust-icon{
      width:43px;
      height:43px;
      display:grid;
      flex:0 0 auto;
      place-items:center;
      border-radius:12px;
      color:var(--theme);
      background:var(--theme-soft);
      font-weight:900;
    }
    .trust-item strong{display:block;font-size:15px}
    .trust-item span{display:block;color:var(--muted);font-size:12px}

    .home-brokers{padding:86px 0;background:#fff}
    .broker-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .broker-card{
      padding:22px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:0 8px 24px rgba(24,32,51,.04);
      transition:.22s ease;
    }
    .broker-card:hover{
      border-color:#b9cae9;
      box-shadow:var(--shadow-soft);
      transform:translateY(-4px);
    }
    .broker-card-head{
      display:flex;
      align-items:center;
      gap:13px;
    }
    .broker-card-head img{
      width:54px;
      height:54px;
      border:1px solid var(--line);
      border-radius:13px;
      object-fit:contain;
      background:#fff;
    }
    .broker-card h3{margin:0;font-size:18px}
    .broker-score{color:var(--warning);font-size:13px;font-weight:850}
    .broker-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:8px;
      margin:18px 0;
    }
    .broker-stat{
      padding:10px 7px;
      border-radius:10px;
      background:#f7f8fa;
      text-align:center;
    }
    .broker-stat small{display:block;color:var(--muted);font-size:10px}
    .broker-stat strong{
      display:block;
      overflow:hidden;
      margin-top:2px;
      color:#344054;
      font-size:12px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .broker-card-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      color:var(--theme);
      font-size:13px;
      font-weight:850;
    }

    .home-news{padding:86px 0;background:var(--page)}
    .news-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .news-card{
      display:grid;
      grid-template-columns:180px minmax(0,1fr);
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      box-shadow:0 8px 24px rgba(24,32,51,.04);
    }
    .news-card img{
      width:100%;
      height:100%;
      min-height:180px;
      object-fit:cover;
      background:#e8edf5;
    }
    .news-card-body{
      min-width:0;
      padding:19px;
    }
    .news-card-body h3{
      display:-webkit-box;
      overflow:hidden;
      margin:6px 0 8px;
      font-size:18px;
      line-height:1.45;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .news-card-body p{
      display:-webkit-box;
      overflow:hidden;
      margin:0;
      color:var(--muted);
      font-size:13px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .news-meta{
      display:flex;
      justify-content:space-between;
      gap:10px;
      margin-top:13px;
      color:#8a93a3;
      font-size:11px;
    }
    .news-category{color:var(--accent);font-size:11px;font-weight:850}

    .home-tools{padding:86px 0;background:#fff}
    .tool-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .tool-card{
      position:relative;
      overflow:hidden;
      padding:24px;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
      transition:.22s ease;
    }
    .tool-card::after{
      position:absolute;
      right:-30px;
      bottom:-35px;
      width:110px;
      height:110px;
      border-radius:50%;
      background:var(--theme-soft);
      content:"";
      transition:.25s ease;
    }
    .tool-card:hover{
      color:#fff;
      border-color:var(--theme);
      background:var(--theme);
      transform:translateY(-4px);
    }
    .tool-card:hover::after{background:rgba(255,255,255,.08);transform:scale(1.4)}
    .tool-card img{
      position:relative;
      z-index:1;
      width:48px;
      height:48px;
      padding:8px;
      border-radius:12px;
      object-fit:contain;
      background:var(--theme-soft);
    }
    .tool-card h3{position:relative;z-index:1;margin:18px 0 7px;font-size:19px}
    .tool-card p{
      position:relative;
      z-index:1;
      display:-webkit-box;
      overflow:hidden;
      margin:0;
      color:var(--muted);
      font-size:13px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .tool-card:hover p{color:#dce7fb}

    .home-products{padding:86px 0;background:#f7f9fc}
    .product-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:20px;
    }
    .product-card{
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
      box-shadow:0 8px 25px rgba(24,32,51,.05);
      transition:.22s ease;
    }
    .product-card:hover{box-shadow:var(--shadow-soft);transform:translateY(-4px)}
    .product-card img{
      width:100%;
      height:190px;
      object-fit:cover;
      background:#e9edf5;
    }
    .product-card-body{padding:20px}
    .product-card h3{
      display:-webkit-box;
      overflow:hidden;
      margin:0 0 8px;
      font-size:19px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .product-card p{
      display:-webkit-box;
      overflow:hidden;
      margin:0;
      color:var(--muted);
      font-size:13px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }
    .product-meta{
      display:flex;
      justify-content:space-between;
      gap:10px;
      margin-top:16px;
      padding-top:13px;
      border-top:1px solid var(--line);
      color:#8a93a3;
      font-size:11px;
    }

    .home-videos{padding:86px 0;background:#111827;color:#fff}
    .home-videos .section-heading p{color:#aeb8ca}
    .home-videos .section-more{color:#fff}
    .video-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .video-card{
      overflow:hidden;
      border:1px solid rgba(255,255,255,.1);
      border-radius:18px;
      background:#1b2434;
      transition:.22s ease;
    }
    .video-card:hover{
      border-color:rgba(255,255,255,.24);
      transform:translateY(-4px);
    }
    .video-cover{
      position:relative;
      height:190px;
      overflow:hidden;
      background:#263248;
    }
    .video-cover img{width:100%;height:100%;object-fit:cover;opacity:.86}
    .video-play{
      position:absolute;
      top:50%;
      left:50%;
      width:48px;
      height:48px;
      display:grid;
      place-items:center;
      border:1px solid rgba(255,255,255,.6);
      border-radius:50%;
      color:#fff;
      background:rgba(214,31,105,.88);
      box-shadow:0 8px 22px rgba(0,0,0,.3);
      transform:translate(-50%,-50%);
    }
    .video-play::before{
      margin-left:3px;
      border-top:7px solid transparent;
      border-bottom:7px solid transparent;
      border-left:11px solid #fff;
      content:"";
    }
    .video-duration{
      position:absolute;
      right:10px;
      bottom:10px;
      padding:4px 7px;
      border-radius:6px;
      background:rgba(0,0,0,.76);
      font-size:11px;
      font-weight:800;
    }
    .video-card-body{padding:18px}
    .video-card h3{
      display:-webkit-box;
      overflow:hidden;
      margin:0 0 8px;
      font-size:17px;
      line-height:1.5;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .video-card p{
      display:-webkit-box;
      overflow:hidden;
      margin:0;
      color:#aeb8ca;
      font-size:13px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }

    .home-faq{padding:86px 0;background:#fff}
    .faq-layout{
      display:grid;
      grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr);
      gap:58px;
      align-items:start;
    }
    .faq-intro{
      position:sticky;
      top:115px;
    }
    .faq-intro h2{
      margin:0;
      font-size:clamp(30px,4vw,46px);
      line-height:1.2;
    }
    .faq-intro p{color:var(--muted)}
    .faq-list{display:grid;gap:12px}
    .faq-list details{
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
    }
    .faq-list details[open]{
      border-color:#c6d5ef;
      box-shadow:var(--shadow-soft);
    }
    .faq-list summary{
      position:relative;
      padding:18px 50px 18px 19px;
      font-weight:850;
      list-style:none;
      cursor:pointer;
    }
    .faq-list summary::-webkit-details-marker{display:none}
    .faq-list summary::after{
      position:absolute;
      top:16px;
      right:17px;
      width:28px;
      height:28px;
      display:grid;
      place-items:center;
      border-radius:8px;
      color:var(--theme);
      background:var(--theme-soft);
      content:"+";
    }
    .faq-list details[open] summary::after{content:"−"}
    .faq-answer{
      padding:0 19px 18px;
      color:var(--muted);
      font-size:14px;
    }

    .home-cta{padding:0 0 86px;background:#fff}
    .cta-panel{
      position:relative;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
      padding:48px;
      border-radius:26px;
      color:#fff;
      background:linear-gradient(125deg,var(--theme-dark),var(--theme) 64%,#285cae);
      box-shadow:0 24px 60px rgba(11,61,145,.22);
    }
    .cta-panel::before,.cta-panel::after{
      position:absolute;
      border:1px solid rgba(255,255,255,.13);
      border-radius:50%;
      content:"";
    }
    .cta-panel::before{right:22%;bottom:-110px;width:260px;height:260px}
    .cta-panel::after{top:-130px;right:-80px;width:320px;height:320px}
    .cta-copy{position:relative;z-index:1}
    .cta-copy h2{margin:0;font-size:clamp(27px,4vw,42px);line-height:1.2}
    .cta-copy p{max-width:650px;margin:12px 0 0;color:#dbe7fb}
    .cta-actions{
      position:relative;
      z-index:1;
      display:flex;
      flex:0 0 auto;
      gap:10px;
    }
    .cta-actions .btn-light{border-color:#fff}

    .footer{
      color:#d4dbea;
      background:#101828;
    }
    .footer-main{
      display:grid;
      grid-template-columns:1.3fr .8fr .8fr 1fr;
      gap:45px;
      padding:64px 0 48px;
    }
    .footer-brand .logo{color:#fff}
    .footer-brand p{
      max-width:360px;
      margin:18px 0;
      color:#98a2b3;
      font-size:14px;
    }
    .footer-social{
      display:flex;
      align-items:center;
      gap:9px;
      flex-wrap:wrap;
    }
    .footer-social a{
      display:inline-flex;
      min-height:34px;
      align-items:center;
      padding:7px 11px;
      border:1px solid #344054;
      border-radius:8px;
      color:#d0d5dd;
      font-size:12px;
    }
    .footer-social a:hover{color:#fff;border-color:#667085}
    .footer h2{
      margin:4px 0 18px;
      color:#fff;
      font-size:15px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#98a2b3;
      font-size:13px;
      transition:.2s ease;
    }
    .footer-links a:hover{color:#fff;transform:translateX(3px)}
    .footer-contact{
      display:grid;
      gap:12px;
      color:#98a2b3;
      font-size:13px;
    }
    .footer-contact a:hover{color:#fff}
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:20px 0;
      border-top:1px solid #273142;
      color:#7d899e;
      font-size:12px;
    }
    .footer-bottom-links{display:flex;gap:18px;flex-wrap:wrap}
    .footer-bottom a:hover{color:#fff}

    @media (max-width:1120px){
      .main-nav{display:none}
      .header-inner{min-height:70px}
      .header-btns{margin-left:auto}
      .hamburger{display:block}
      .waterfall-preview{columns:3 240px}
      .broker-grid,.tool-grid,.product-grid,.video-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-main{grid-template-columns:1.3fr 1fr 1fr}
      .footer-brand{grid-row:span 2}
    }
    @media (max-width:820px){
      .container{width:min(100% - 28px,var(--container))}
      .topbar-welcome{display:none}
      .topbar-inner{justify-content:center}
      .hero-layout-15{padding:58px 0 44px}
      .waterfall-preview{columns:2 220px;max-height:820px}
      .trust-strip-inner{grid-template-columns:repeat(2,1fr)}
      .trust-item:nth-child(3){border-left:1px solid var(--line)}
      .trust-item:nth-child(-n+2){border-bottom:1px solid var(--line)}
      .news-grid{grid-template-columns:1fr}
      .faq-layout{grid-template-columns:1fr;gap:30px}
      .faq-intro{position:static}
      .cta-panel{align-items:flex-start;flex-direction:column;padding:38px 30px}
      .footer-main{grid-template-columns:repeat(2,1fr);gap:34px}
      .footer-brand{grid-column:1/-1;grid-row:auto}
    }
    @media (max-width:600px){
      .topbar-contact{gap:10px;font-size:11px}
      .topbar-contact a:last-child{display:none}
      .logo{max-width:175px;font-size:17px}
      .logo img{width:37px;height:37px}
      .header-btns .member-entry,.header-btns .account-entry{display:none}
      .hero-layout-15 h1{font-size:39px}
      .hero-layout-15 .hero-intro{font-size:15px}
      .hero-filters{
        flex-wrap:nowrap;
        justify-content:flex-start;
        overflow-x:auto;
        margin-right:-14px;
        margin-left:-14px;
        padding:0 14px 6px;
        scrollbar-width:none;
      }
      .hero-filters::-webkit-scrollbar{display:none}
      .hero-filters a{flex:0 0 auto}
      .waterfall-preview{columns:1;max-height:920px}
      .waterfall-card:nth-child(n+5){display:none}
      .waterfall-card:nth-child(3n+1) .waterfall-image,
      .waterfall-card:nth-child(3n+2) .waterfall-image,
      .waterfall-card:nth-child(3n) .waterfall-image{height:180px}
      .hero-bottom-cta{align-items:flex-start;flex-direction:column;gap:5px}
      .trust-strip-inner{grid-template-columns:1fr}
      .trust-item,.trust-item:first-child,.trust-item:nth-child(3){
        border-right:1px solid var(--line);
        border-bottom:1px solid var(--line);
        border-left:1px solid var(--line);
      }
      .section-heading{align-items:flex-start;flex-direction:column}
      .home-brokers,.home-news,.home-tools,.home-products,.home-videos,.home-faq{padding:64px 0}
      .broker-grid,.tool-grid,.product-grid,.video-grid{grid-template-columns:1fr}
      .news-card{grid-template-columns:1fr}
      .news-card img{height:190px;min-height:0}
      .broker-stats{grid-template-columns:repeat(3,minmax(0,1fr))}
      .cta-actions{width:100%;flex-direction:column}
      .cta-actions .btn{width:100%}
      .footer-main{grid-template-columns:1fr}
      .footer-brand{grid-column:auto}
      .footer-bottom{align-items:flex-start;flex-direction:column}
      .drawer-head{grid-template-columns:minmax(0,1fr) auto auto}
    }