:root{
      --primary:#0B3D91;
      --template-theme:{主题色};
      --primary-dark:#072961;
      --primary-soft:#eaf0fb;
      --cyan:#12d9ef;
      --cyan-dark:#00a9c2;
      --ink:#10213b;
      --muted:#61708a;
      --line:#dce4f0;
      --surface:#ffffff;
      --surface-soft:#f4f7fb;
      --footer:#07172f;
      --success:#0b9f70;
      --warning:#f7b84b;
      --shadow:0 18px 50px rgba(9,41,88,.12);
      --radius:20px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:#fff;
      font-family:"Pretendard","Noto Sans KR","Apple SD Gothic Neo",Arial,sans-serif;
      line-height:1.65;
      word-break:keep-all;
    }
    body.drawer-lock{overflow:hidden}
    img{display:block;max-width:100%}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{cursor:pointer}
    .container{width:min(1180px,calc(100% - 40px));margin:0 auto}
    .skip-link{
      position:absolute;
      left:16px;
      top:-80px;
      z-index:3000;
      padding:10px 16px;
      color:#fff;
      background:var(--primary);
      border-radius:8px;
    }
    .skip-link:focus{top:12px}

    .topbar{
      color:#dceaff;
      background:var(--primary-dark);
      font-size:13px;
    }
    .topbar-inner{
      min-height:36px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .topbar-welcome{margin:0}
    .topbar-contact{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }
    .topbar-contact a:hover{color:var(--cyan)}

    .header{
      position:relative;
      z-index:1000;
      border-bottom:1px solid rgba(11,61,145,.1);
      background:rgba(255,255,255,.98);
      box-shadow:0 5px 18px rgba(9,31,67,.04);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:26px;
    }
    .logo{
      display:flex;
      align-items:center;
      gap:11px;
      flex:0 0 auto;
      color:var(--primary);
      font-size:20px;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:10px;
    }
    .main-nav{
      align-self:stretch;
      display:flex;
      align-items:stretch;
      margin-left:auto;
    }
    .nav-list{
      display:flex;
      align-items:stretch;
      gap:2px;
      padding:0;
      margin:0;
      list-style:none;
    }
    .nav-item{
      position:relative;
      display:flex;
      align-items:stretch;
    }
    .nav-link{
      display:flex;
      align-items:center;
      gap:5px;
      padding:0 13px;
      color:#263852;
      font-size:15px;
      font-weight:750;
      white-space:nowrap;
    }
    .nav-link:hover,
    .nav-item:focus-within>.nav-link,
    .nav-item:hover>.nav-link{color:var(--primary)}
    .nav-item.has-panel>.nav-link::after{
      content:"";
      width:6px;
      height:6px;
      margin-top:-4px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      transform:rotate(45deg);
    }
    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:50%;
      visibility:hidden;
      opacity:0;
      transform:translate(-50%,10px);
      transition:opacity .2s ease,transform .2s ease,visibility .2s;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:var(--shadow);
      pointer-events:none;
    }
    .dropdown-panel::before,
    .mega-menu::before{
      content:"";
      position:absolute;
      right:0;
      bottom:100%;
      left:0;
      height:12px;
    }
    .nav-item:hover>.dropdown-panel,
    .nav-item:hover>.mega-menu,
    .nav-item:focus-within>.dropdown-panel,
    .nav-item:focus-within>.mega-menu{
      visibility:visible;
      opacity:1;
      transform:translate(-50%,0);
      pointer-events:auto;
    }
    .dropdown-panel{
      width:350px;
      padding:15px;
      border-radius:0 0 18px 18px;
    }
    .dropdown-title,
    .mega-title{
      margin:0 0 12px;
      color:var(--primary);
      font-size:13px;
      font-weight:900;
      letter-spacing:.03em;
    }
    .dropdown-article{
      display:block;
      padding:11px 12px;
      border-radius:10px;
      color:#344761;
      font-size:14px;
      font-weight:700;
    }
    .dropdown-article:hover{background:var(--primary-soft);color:var(--primary)}
    .panel-more{
      display:inline-flex;
      align-items:center;
      margin-top:10px;
      color:var(--primary);
      font-size:13px;
      font-weight:900;
    }
    .mega-menu{
      width:min(920px,calc(100vw - 48px));
      padding:22px;
      border-radius:0 0 22px 22px;
    }
    .mega-menu.mega-wide{width:min(1050px,calc(100vw - 48px))}
    .mega-layout{
      display:grid;
      grid-template-columns:190px minmax(0,1fr);
      gap:22px;
    }
    .mega-sidebar{
      padding:16px;
      border-radius:16px;
      background:linear-gradient(150deg,var(--primary-dark),var(--primary));
      color:#fff;
    }
    .mega-sidebar .mega-title{color:var(--cyan)}
    .mega-sidebar p{margin:0 0 15px;color:#dce9ff;font-size:13px}
    .mega-sidebar a{
      display:inline-flex;
      padding:8px 12px;
      border:1px solid rgba(255,255,255,.35);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
    }
    .mega-categories{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      margin-bottom:14px;
    }
    .mega-categories a{
      padding:6px 10px;
      border:1px solid var(--line);
      border-radius:999px;
      color:#43546d;
      background:#fff;
      font-size:12px;
      font-weight:750;
    }
    .mega-categories a:hover{border-color:var(--cyan-dark);color:var(--primary)}
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px;
    }
    .mega-card{
      min-width:0;
      padding:12px;
      border:1px solid var(--line);
      border-radius:13px;
      background:#fff;
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
    }
    .mega-card:hover{
      transform:translateY(-2px);
      border-color:#a8c7ee;
      box-shadow:0 10px 24px rgba(11,61,145,.09);
    }
    .mega-card img{
      width:38px;
      height:38px;
      margin-bottom:8px;
      object-fit:contain;
      border-radius:9px;
      background:var(--surface-soft);
    }
    .mega-card.video-card img,
    .mega-card.product-card img{
      width:100%;
      height:78px;
      object-fit:cover;
    }
    .mega-card strong{
      display:block;
      overflow:hidden;
      color:#1c304d;
      font-size:13px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .mega-card small{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:11px;
      line-height:1.45;
    }
    .mega-card .mega-meta{
      display:flex;
      flex-wrap:wrap;
      gap:6px;
      margin-top:7px;
      color:var(--primary);
      font-size:10px;
      font-weight:800;
    }
    .header-btns{
      display:flex;
      align-items:center;
      gap:9px;
      flex:0 0 auto;
    }
    .header-btns>a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:850;
    }
    .member-entry{
      color:var(--primary);
      border:1px solid #b8c9e2;
      background:#fff;
    }
    .open-account{
      color:#fff;
      background:var(--primary);
      box-shadow:0 9px 20px rgba(11,61,145,.2);
    }
    .hamburger{
      display:none;
      width:42px;
      height:42px;
      padding:10px;
      border:0;
      border-radius:10px;
      background:var(--primary-soft);
    }
    .hamburger span{
      display:block;
      width:100%;
      height:2px;
      margin:4px 0;
      background:var(--primary);
      transition:transform .2s ease,opacity .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;
      inset:0;
      z-index:1400;
      visibility:hidden;
      opacity:0;
      background:rgba(3,15,35,.58);
      transition:opacity .25s ease,visibility .25s;
    }
    .drawer-overlay.open{visibility:visible;opacity:1}
    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      z-index:1500;
      width:min(390px,92vw);
      height:100dvh;
      overflow-y:auto;
      background:#fff;
      box-shadow:-20px 0 50px rgba(0,0,0,.18);
      transform:translateX(105%);
      transition:transform .28s ease;
    }
    .mobile-drawer.open{transform:translateX(0)}
    .drawer-head{
      position:sticky;
      top:0;
      z-index:2;
      display:flex;
      align-items:center;
      gap:9px;
      padding:18px;
      border-bottom:1px solid var(--line);
      background:#fff;
    }
    .drawer-head>a{
      padding:9px 12px;
      border-radius:999px;
      color:var(--primary);
      background:var(--primary-soft);
      font-size:13px;
      font-weight:850;
    }
    .drawer-close{
      width:38px;
      height:38px;
      margin-left:auto;
      border:0;
      border-radius:10px;
      color:#fff;
      background:var(--primary);
      font-size:25px;
      line-height:1;
    }
    .drawer-menu{padding:14px 18px 30px}
    .drawer-link,
    .drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 5px;
      border:0;
      border-bottom:1px solid var(--line);
      color:#20344f;
      background:transparent;
      text-align:left;
      font-weight:850;
    }
    .drawer-toggle::after{
      content:"+";
      color:var(--primary);
      font-size:20px;
    }
    .drawer-toggle.active::after{content:"−"}
    .drawer-submenu{
      display:none;
      padding:7px 10px 12px;
      border-bottom:1px solid var(--line);
      background:var(--surface-soft);
    }
    .drawer-submenu.open{display:block}
    .drawer-submenu a{
      display:block;
      padding:9px 8px;
      color:#50617a;
      font-size:14px;
      font-weight:650;
    }
    .drawer-submenu a:hover{color:var(--primary)}

    .hero-layout-09{
      position:relative;
      overflow:hidden;
      padding:82px 0 72px;
      background:
        radial-gradient(circle at 16% 18%,rgba(18,217,239,.18),transparent 24%),
        radial-gradient(circle at 84% 2%,rgba(87,123,255,.18),transparent 27%),
        linear-gradient(180deg,#edf4ff 0%,#f7f9fc 72%,#fff 100%);
    }
    .hero-layout-09::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.34;
      background-image:
        linear-gradient(rgba(11,61,145,.06) 1px,transparent 1px),
        linear-gradient(90deg,rgba(11,61,145,.06) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom,#000,transparent 85%);
    }
    .hero-layout-09 .hero-inner{position:relative;z-index:1}
    .hero-layout-09 .hero-heading{
      max-width:850px;
      margin:0 auto;
      text-align:center;
    }
    .hero-layout-09 .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:16px;
      padding:7px 13px;
      border:1px solid rgba(11,61,145,.16);
      border-radius:999px;
      color:var(--primary);
      background:rgba(255,255,255,.72);
      font-size:13px;
      font-weight:900;
      box-shadow:0 8px 20px rgba(11,61,145,.06);
    }
    .hero-layout-09 .hero-kicker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 0 5px rgba(18,217,239,.14);
    }
    .hero-layout-09 h1{
      margin:0;
      color:#09275b;
      font-size:clamp(38px,6vw,72px);
      line-height:1.08;
      letter-spacing:-.055em;
    }
    .hero-layout-09 .hero-description{
      max-width:720px;
      margin:22px auto 0;
      color:#536681;
      font-size:clamp(16px,2vw,19px);
    }
    .hero-layout-09 .hero-pills{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px;
      margin:30px auto 34px;
    }
    .hero-layout-09 .hero-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:45px;
      padding:0 18px;
      border:1px solid #c6d6eb;
      border-radius:999px;
      color:#183b70;
      background:rgba(255,255,255,.9);
      font-size:14px;
      font-weight:850;
      box-shadow:0 8px 20px rgba(13,52,105,.06);
      transition:transform .2s ease,color .2s ease,background .2s ease;
    }
    .hero-layout-09 .hero-pill span{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--cyan);
    }
    .hero-layout-09 .hero-pill:hover{
      transform:translateY(-2px);
      color:#fff;
      border-color:var(--primary);
      background:var(--primary);
    }
    .hero-layout-09 .hero-gateway-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:16px;
    }
    .hero-layout-09 .gateway-card{
      position:relative;
      min-height:210px;
      overflow:hidden;
      padding:25px;
      border:1px solid rgba(126,153,192,.26);
      border-radius:22px;
      background:rgba(255,255,255,.91);
      box-shadow:0 18px 44px rgba(15,52,102,.1);
      transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
    }
    .hero-layout-09 .gateway-card:nth-child(1),
    .hero-layout-09 .gateway-card:nth-child(2){grid-column:span 6}
    .hero-layout-09 .gateway-card:nth-child(n+3){grid-column:span 4}
    .hero-layout-09 .gateway-card:hover{
      transform:translateY(-5px);
      border-color:rgba(18,217,239,.8);
      box-shadow:0 24px 55px rgba(10,52,112,.16);
    }
    .hero-layout-09 .gateway-card::after{
      content:"";
      position:absolute;
      right:-45px;
      bottom:-55px;
      width:150px;
      height:150px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(18,217,239,.23),rgba(18,217,239,0) 68%);
    }
    .hero-layout-09 .gateway-card.featured{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(145deg,var(--primary-dark),var(--primary));
    }
    .hero-layout-09 .gateway-icon{
      display:grid;
      width:46px;
      height:46px;
      place-items:center;
      margin-bottom:30px;
      border-radius:14px;
      color:var(--primary);
      background:#e7fbff;
      font-size:20px;
      font-weight:950;
    }
    .hero-layout-09 .gateway-card.featured .gateway-icon{
      color:#072961;
      background:var(--cyan);
    }
    .hero-layout-09 .gateway-card h2{
      position:relative;
      z-index:1;
      margin:0 0 8px;
      color:#142f58;
      font-size:22px;
      letter-spacing:-.025em;
    }
    .hero-layout-09 .gateway-card.featured h2{color:#fff}
    .hero-layout-09 .gateway-card p{
      position:relative;
      z-index:1;
      max-width:510px;
      margin:0 0 18px;
      color:#64758d;
      font-size:14px;
    }
    .hero-layout-09 .gateway-card.featured p{color:#dbe8ff}
    .hero-layout-09 .gateway-link{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--primary);
      font-size:14px;
      font-weight:900;
    }
    .hero-layout-09 .gateway-card.featured .gateway-link{color:var(--cyan)}
    .hero-layout-09 .gateway-link::after{content:"→"}

    .home-section{padding:82px 0}
    .home-section.soft{background:var(--surface-soft)}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:30px;
    }
    .section-heading{max-width:720px}
    .section-eyebrow{
      display:block;
      margin-bottom:8px;
      color:var(--cyan-dark);
      font-size:13px;
      font-weight:950;
      letter-spacing:.08em;
    }
    .section-head h2{
      margin:0;
      color:#102d59;
      font-size:clamp(28px,4vw,42px);
      line-height:1.2;
      letter-spacing:-.045em;
    }
    .section-head p{margin:10px 0 0;color:var(--muted)}
    .section-more{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:10px 15px;
      border:1px solid #bbcae0;
      border-radius:999px;
      color:var(--primary);
      background:#fff;
      font-size:14px;
      font-weight:900;
    }
    .section-more::after{content:"→"}

    .broker-grid,
    .tool-grid,
    .product-grid,
    .video-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .broker-card,
    .tool-card,
    .product-card,
    .video-card{
      min-width:0;
      padding:22px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:0 12px 30px rgba(13,47,94,.06);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .broker-card:hover,
    .tool-card:hover,
    .product-card:hover,
    .video-card:hover{
      transform:translateY(-4px);
      border-color:#a6c4eb;
      box-shadow:0 18px 38px rgba(11,61,145,.11);
    }
    .broker-card-head{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:16px;
    }
    .broker-card img{
      width:54px;
      height:54px;
      flex:0 0 auto;
      padding:5px;
      object-fit:contain;
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
    }
    .broker-card h3,
    .tool-card h3,
    .product-card h3,
    .video-card h3{
      margin:0;
      color:#17345f;
      font-size:18px;
      line-height:1.35;
    }
    .rating{color:#db8e05;font-size:13px;font-weight:900}
    .broker-metrics{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:7px;
      margin:0;
    }
    .broker-metrics div{
      min-width:0;
      padding:10px 7px;
      border-radius:10px;
      background:var(--surface-soft);
    }
    .broker-metrics dt{color:var(--muted);font-size:10px}
    .broker-metrics dd{
      overflow:hidden;
      margin:2px 0 0;
      color:var(--primary);
      font-size:12px;
      font-weight:900;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .news-layout{
      display:grid;
      grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
      gap:22px;
    }
    .news-list{display:grid;gap:14px}
    .news-card{
      display:grid;
      grid-template-columns:180px minmax(0,1fr);
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fff;
    }
    .news-card img{width:100%;height:100%;min-height:150px;object-fit:cover}
    .news-body{min-width:0;padding:19px}
    .news-body h3{
      margin:5px 0 8px;
      color:#17345f;
      font-size:18px;
      line-height:1.4;
    }
    .news-body p{
      display:-webkit-box;
      overflow:hidden;
      margin:0 0 11px;
      color:var(--muted);
      font-size:14px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .news-meta{
      display:flex;
      flex-wrap:wrap;
      gap:11px;
      color:#718097;
      font-size:12px;
    }
    .market-note{
      padding:28px;
      border-radius:22px;
      color:#fff;
      background:
        radial-gradient(circle at 90% 10%,rgba(18,217,239,.3),transparent 30%),
        linear-gradient(150deg,var(--primary-dark),var(--primary));
      box-shadow:var(--shadow);
    }
    .market-note h3{margin:0 0 12px;font-size:25px}
    .market-note p{margin:0 0 20px;color:#dce9ff}
    .market-note ul{padding:0;margin:0;list-style:none}
    .market-note li{
      display:flex;
      gap:9px;
      padding:11px 0;
      border-top:1px solid rgba(255,255,255,.14);
      font-size:14px;
    }
    .market-note li::before{content:"•";color:var(--cyan);font-weight:900}

    .tool-card{position:relative;padding-top:64px}
    .tool-card img{
      position:absolute;
      top:20px;
      left:22px;
      width:32px;
      height:32px;
      object-fit:contain;
    }
    .tool-card p,
    .product-card p,
    .video-card p{
      margin:9px 0 0;
      color:var(--muted);
      font-size:14px;
    }
    .card-link{
      display:inline-flex;
      margin-top:16px;
      color:var(--primary);
      font-size:13px;
      font-weight:900;
    }
    .product-card,
    .video-card{padding:0;overflow:hidden}
    .product-card img,
    .video-card img{width:100%;height:190px;object-fit:cover}
    .product-body,
    .video-body{padding:20px}
    .card-meta{
      display:flex;
      justify-content:space-between;
      gap:12px;
      margin-top:14px;
      color:#738197;
      font-size:12px;
    }
    .video-cover{position:relative}
    .video-duration{
      position:absolute;
      right:10px;
      bottom:10px;
      padding:4px 8px;
      border-radius:7px;
      color:#fff;
      background:rgba(4,17,36,.82);
      font-size:11px;
      font-weight:900;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:minmax(260px,.72fr) minmax(0,1.28fr);
      gap:34px;
    }
    .faq-intro{
      padding:28px;
      border-radius:22px;
      background:var(--primary-soft);
    }
    .faq-intro h2{margin:0;color:#123466;font-size:34px;line-height:1.25}
    .faq-intro p{color:var(--muted)}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:15px;
      background:#fff;
    }
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:18px 20px;
      border:0;
      color:#1d385f;
      background:#fff;
      text-align:left;
      font-weight:850;
    }
    .faq-question::after{content:"+";color:var(--primary);font-size:22px}
    .faq-question.active::after{content:"−"}
    .faq-answer{display:none;padding:0 20px 18px;color:var(--muted);font-size:14px}
    .faq-answer.open{display:block}

    .home-cta{padding:0 0 82px}
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:48px;
      border-radius:28px;
      color:#fff;
      background:linear-gradient(135deg,#071f4b,#0B3D91 68%,#087e9c);
      box-shadow:0 25px 60px rgba(7,39,91,.2);
      text-align:center;
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      top:-100px;
      left:50%;
      width:500px;
      height:260px;
      border-radius:50%;
      background:rgba(18,217,239,.14);
      transform:translateX(-50%);
      filter:blur(10px);
    }
    .cta-panel>*{position:relative;z-index:1}
    .cta-panel h2{margin:0;font-size:clamp(28px,4vw,44px)}
    .cta-panel p{max-width:680px;margin:14px auto 24px;color:#dceaff}
    .cta-actions{display:flex;justify-content:center;flex-wrap:wrap;gap:11px}
    .cta-actions a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      font-weight:900;
    }
    .cta-primary{color:#072961;background:var(--cyan)}
    .cta-secondary{color:#fff;border:1px solid rgba(255,255,255,.38)}

    .footer{
      color:#c8d6eb;
      background:var(--footer);
    }
    .footer-main{
      display:grid;
      grid-template-columns:1.25fr .85fr .85fr 1fr;
      gap:38px;
      padding:62px 0 42px;
    }
    .footer-brand .logo{color:#fff}
    .footer-brand p{max-width:330px;margin:18px 0;color:#9fb1ca;font-size:14px}
    .footer-social{display:flex;flex-wrap:wrap;gap:8px;margin-top:17px}
    .footer-social a{
      display:inline-flex;
      padding:8px 11px;
      border:1px solid rgba(255,255,255,.17);
      border-radius:999px;
      color:#dfeaff;
      font-size:12px;
      font-weight:800;
    }
    .footer h2{
      margin:0 0 17px;
      color:#fff;
      font-size:15px;
    }
    .footer-links{display:grid;gap:10px}
    .footer-links a{
      color:#9fb1ca;
      font-size:14px;
      transition:color .2s ease;
    }
    .footer-links a:hover{color:var(--cyan)}
    .footer-contact address{font-style:normal}
    .footer-contact a,
    .footer-contact span{
      display:block;
      margin-bottom:10px;
      color:#aebed4;
      font-size:14px;
    }
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:20px 0;
      border-top:1px solid rgba(255,255,255,.1);
      color:#8195b2;
      font-size:13px;
    }
    .footer-bottom-links{display:flex;gap:16px;flex-wrap:wrap}
    .footer-bottom a:hover{color:var(--cyan)}

    @media (max-width:1100px){
      .main-nav{display:none}
      .hamburger{display:block}
      .header-btns{margin-left:auto}
      .hero-layout-09 .gateway-card:nth-child(n){grid-column:span 6}
      .mega-menu,.dropdown-panel{display:none}
    }
    @media (max-width:900px){
      .broker-grid,.tool-grid,.product-grid,.video-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .news-layout,.faq-wrap{grid-template-columns:1fr}
      .footer-main{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:680px){
      .container{width:min(100% - 28px,1180px)}
      .topbar-welcome{display:none}
      .topbar-inner{justify-content:center}
      .topbar-contact{justify-content:center;gap:11px}
      .header-inner{min-height:68px}
      .logo span{font-size:17px}
      .logo img{width:37px;height:37px}
      .header-btns>.member-entry,
      .header-btns>.open-account{display:none}
      .hero-layout-09{padding:58px 0 48px}
      .hero-layout-09 .hero-description{font-size:15px}
      .hero-layout-09 .hero-pills{margin:24px auto 27px}
      .hero-layout-09 .hero-pill{min-height:41px;padding:0 13px;font-size:12px}
      .hero-layout-09 .gateway-card:nth-child(n){grid-column:span 12}
      .hero-layout-09 .gateway-card{min-height:190px;padding:21px}
      .hero-layout-09 .gateway-icon{margin-bottom:22px}
      .home-section{padding:60px 0}
      .section-head{align-items:start;flex-direction:column}
      .broker-grid,.tool-grid,.product-grid,.video-grid{grid-template-columns:1fr}
      .news-card{grid-template-columns:1fr}
      .news-card img{height:190px}
      .faq-intro h2{font-size:29px}
      .cta-panel{padding:38px 20px}
      .footer-main{grid-template-columns:1fr;gap:30px;padding:48px 0 34px}
      .footer-bottom{align-items:flex-start;flex-direction:column}
    }