header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
}

header .h1{
  background:rgba(255,255,255,0.55);
  border-bottom:1px solid rgba(15,23,42,0.06);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 10px 30px rgba(15,23,42,0.05);
}

header .h1row{
  min-height:84px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
}

header .brand img{height:54px;width:auto}

header .nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-width:0;
}

header .navItem,
header .langWrap{position:relative}

header .navItem.hasMenu::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
}

header .navLink,
header .btn,
header .btnGhost,
header .btnCta{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 14px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
  transition:all .18s ease;
}

header .navLink{
  color:var(--navy);
  border:1px solid transparent;
}
header .navLink:hover,
header .navItem.open > .navLink{
  background:rgba(255,255,255,.9);
  border-color:rgba(203,216,232,.95);
  box-shadow:var(--shadow-sm);
}

header .caret{
  font-size:11px;
  opacity:.78;
  transition:transform .18s ease;
}
header .navItem.open > .navLink .caret,
header .langWrap.open > .btn .caret{transform:rotate(180deg)}

header .h1right{
  display:flex;
  align-items:center;
  gap:10px;
}

header .btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.82);
  color:var(--navy);
  cursor:pointer;
}
header .btn:hover{background:#fff;box-shadow:var(--shadow-sm)}

header .btnGhost{
  border:1px solid rgba(18,59,99,.12);
  background:rgba(255,255,255,.7);
  color:var(--navy);
}
header .btnGhost:hover{background:#fff;box-shadow:var(--shadow-sm)}

header .btnCta{
  border:1px solid rgba(31,111,255,.16);
  background:linear-gradient(180deg, var(--blue-2), var(--blue));
  color:#fff;
  box-shadow:0 14px 28px rgba(31,111,255,.24);
}
header .btnCta:hover{transform:translateY(-1px)}

header .burgerBtn{display:none}

header .menu,
header .langList{
  display:none;
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow-lg);
  padding:12px;
}

header .navItem.open > .menu,
header .langWrap.open > .langList{display:block}

header .menu{width:min(980px,92vw)}
header .menu.menuMedium{width:min(390px,92vw)}
header .menu.menuWide{width:min(980px,92vw)}
header .menu.menuMegaCenter{width:min(960px,92vw)}
header .langList{left:auto;right:0;transform:none;min-width:210px}

header .menuHead{
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:4px 6px 12px;
  margin-bottom:10px;
  border-bottom:1px solid var(--line-soft);
}
header .menuHead b{font-size:14px;color:var(--text)}
header .menuHead span{font-size:12px;color:var(--muted)}

header .menuList{display:grid;gap:12px}
header .menuMegaCenter .menuList{grid-template-columns:repeat(2,minmax(0,1fr))}
header .gridMenu{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  max-height:430px;
  overflow:auto;
  padding:2px;
}
header .gridMenu::-webkit-scrollbar{width:10px}
header .gridMenu::-webkit-scrollbar-thumb{background:#dbe6f2;border-radius:999px;border:2px solid #fff}

header .menuA,
header .menuCard,
header .langList a{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:12px;
  border-radius:14px;
  border:1px solid transparent;
  color:var(--text);
}

header .menuCard{
  min-height:74px;
  justify-content:center;
  padding:14px 16px;
  border:1px solid #dbe4ef;
  border-radius:16px;
  background:linear-gradient(180deg,#fff,#fbfdff);
}

header .menuMegaCenter .menuA{
  min-height:80px;
  justify-content:center;
  padding:16px 18px;
  border:1px solid #dbe4ef;
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#fbfdff);
}
header .menuA:hover,
header .menuCard:hover,
header .langList a:hover{
  background:#f7fbff;
  border-color:var(--line);
}
header .menuA span:first-child,
header .menuCard .code{
  display:block;
  font-weight:900;
  font-size:14px;
  color:var(--navy);
}

header .menuA span:last-child,
header .menuCard .desc{
  display:block;
  font-size:12px;
  line-height:1.45;
  color:var(--muted);
}

header .menuCard .code{
  font-size:15px;
  line-height:1.2;
  margin-bottom:2px;
}

header .menuCard .desc{
  font-size:13px;
  line-height:1.45;
  color:#64748b;
}

header .menuMegaCenter .menuA span:first-child{
  font-size:17px;
  line-height:1.2;
  margin-bottom:2px;
}

header .menuMegaCenter .menuA span:last-child{
  font-size:14px;
  line-height:1.5;
  color:#64748b;
}

.hero2{
  padding:0 0 8px;
}

.hero2 .heroShell{
  position:relative;
  overflow:visible;
  border-radius:0;
  padding:0;
  border:none;
  box-shadow:none;
  background:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.hero2 .heroShell::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.72) 38%, rgba(244,248,255,.56) 62%, rgba(241,247,255,.42) 100%),
    radial-gradient(circle at top right, rgba(31,111,255,.14), transparent 28%),
    linear-gradient(135deg, rgba(11,43,74,.04), rgba(31,111,255,.06));
  z-index:0;
}

.hero2 .kicker-pill,
.hero2 .heroEngineBox,
.hero2 .heroQuickLabelWrap,
.hero2 .trustBar,
.hero2 .heroCatalogLinkWrap{
  position:relative;
  z-index:1;
}

.hero2 .kicker-pill{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(24,169,87,.10);
  color:#147346;
  border:1px solid rgba(24,169,87,.22);
  font-size:13px;
  font-weight:900;
  margin-bottom:18px;
}

.hero2 .heroEngineBox{
  min-height:420px;
  border-radius:26px;
  padding:30px;
  border:1px solid rgba(213,226,241,.9);
  background:rgba(255,255,255,.84);
  box-shadow:var(--shadow-sm);
  display:flex;
  align-items:stretch;
  justify-content:center;
  margin-bottom:18px;
}

.hero2 .heroEngineBox #pathfinder{
  width:100%;
  min-height:340px;
  display:flex;
  align-items:stretch;
  justify-content:center;
  text-align:center;
}

.hero2 .pathfinderBox{
  width:100%;
  max-width:none;
  margin:0;
  text-align:center;
}

.hero2 .pathfinderIntro{
  display:none;
}

.hero2 .pathfinderQuestion{
  margin:0 0 24px;
  font-size:clamp(32px,3.6vw,60px);
  line-height:1.08;
  letter-spacing:-1.2px;
  color:var(--navy);
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.hero2 .pathfinderOptions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  max-width:1100px;
  margin:0 auto;
  align-items:stretch;
}

.hero2 .pathfinderOption{
  min-height:78px;
  padding:0 24px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.hero2 .pathfinderOption:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
  border-color:#cfe0f3;
  background:#f8fbff;
}

@media (max-width:960px){
  .hero2 .pathfinderQuestion{
    font-size:34px;
    line-height:1.12;
  }

  .hero2 .pathfinderOptions{
    grid-template-columns:1fr;
    max-width:none;
  }

  .hero2 .pathfinderOption{
    width:100%;
    min-height:68px;
    font-size:16px;
    padding:0 18px;
  }

  .hero2 .pathfinderCardText{
    font-size:16px;
  }
}

.hero2 .heroQuickLabelWrap{
  display:flex;
  justify-content:center;
  margin:0 0 14px;
}

.hero2 .heroQuickLabel{
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  font-size:18px;
  color:var(--navy);
}

.hero2 .trustBar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.hero2 .proofMini{
  position:relative;
  display:flex;
  gap:12px;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(213,226,241,.95);
  box-shadow:var(--shadow-sm);
  color:inherit;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.hero2 .proofMini:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
  border-color:#cfe0f3;
  background:#fff;
}

.hero2 .proofMini::before{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  top:0;
  height:3px;
  border-radius:999px;
  background:var(--accent, #18a957);
}

.hero2 .proofIcon{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  background:#f5f9ff;
  border:1px solid #dce8f7;
  font-size:17px;
}

.hero2 .proofTitle{
  font-weight:900;
  font-size:15px;
  line-height:1.16;
  color:var(--navy);
  margin:0 0 5px;
}

.hero2 .proofText{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:#566679;
}

.hero2 .accent-green{--accent:#22c55e}
.hero2 .accent-blue{--accent:#3b82f6}
.hero2 .accent-rose{--accent:#f43f5e}
.hero2 .accent-amber{--accent:#f59e0b}

.hero2 .heroCatalogLinkWrap{
  display:flex;
  justify-content:center;
  margin-top:14px;
}

.hero2 .heroCatalogLink{
  min-height:54px;
  width:min(980px,100%);
  padding:0 28px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  font-size:16px;
  color:#1f5fb9;
  text-decoration:none;
}

.hero2 .heroCatalogLink:hover{
  background:#f7fbff;
  border-color:var(--line);
}

@media (max-width:1180px){
  .hero2 .trustBar{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:960px){
  .hero2 .heroShell{
    padding:20px;
  }

  .hero2 .heroEngineBox{
    min-height:260px;
    padding:18px;
  }

  .hero2 .heroQuickLabel{
    width:100%;
    min-height:50px;
    font-size:16px;
    padding:0 18px;
  }

  .hero2 .trustBar{
    grid-template-columns:1fr;
  }

  .hero2 .heroCatalogLink{
    width:100%;
    min-height:50px;
    font-size:15px;
    padding:0 18px;
  }
}

.home2 .panel{
  border-radius:28px;
  overflow:hidden;
}
.home2 .panelPad{
  padding:20px 40px 10px;
}
.home2 .frameTitle{
  margin:0 0 10px;
  font-size:clamp(28px, 3vw, 44px);
  line-height:1.08;
  letter-spacing:-0.8px;
  color:var(--navy);
  text-align:center;
}
.home2 .frameText{
  margin:0 auto 18px;
  color:#415164;
  font-size:17px;
  line-height:1.5;
  max-width:1100px;
  text-align:center;
}
.home2 .cards4,
.home2 .stepGrid,
.home2 .proGrid,
.home2 .infoPills{display:grid;gap:14px}
.home2 .cards4{grid-template-columns:repeat(4,1fr);margin-top:18px}
.home2 .stepGrid{
  grid-template-columns:repeat(3,1fr);
  margin-top:8px;
}
.home2 .proGrid{grid-template-columns:repeat(2,1fr);margin-top:18px}
.home2 .goalCard,
.home2 .stepCard,
.home2 .proCard,
.home2 .infoPill,
.home2 .miniInfo{
  background:#fff;
  border:1px solid var(--line-soft);
  border-radius:22px;
  padding:18px 22px;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.home2 .stepCard{
  display:flex;
  flex-direction:column;
}

.home2 .stepCard h3{
  margin:0;
  color:var(--navy);
  font-size:20px;
  line-height:1.2;
}

.home2 .stepCard p{
  margin:0;
  color:#4b5c6d;
  line-height:1.65;
}
.home2 .stepCard{
  position:relative;
  padding-top:26px;
}

.home2 .stepNum{
  position:absolute;
  top:22px;
  left:22px;
}

.home2 .stepCard h3{
  padding-left:64px;
}

.home2 .stepCard p{
  padding-left:64px;
}
.home2 .goalIcon,
.home2 .stepNum{
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:900;
  margin-bottom:0;
}
.home2 .goalIcon{background:#eef5ff;border:1px solid #d9e8fb;font-size:22px}
.home2 .stepNum{background:var(--navy);color:#fff;border-radius:999px}
.home2 .goalCard h3,
.home2 .stepCard h3,
.home2 .proCard h3{margin:0 0 10px;color:var(--navy)}
.home2 .goalCard p,
.home2 .stepCard p,
.home2 .proCard p,
.home2 .miniInfo span{margin:0;color:#4b5c6d;line-height:1.65}
.home2 .goalCard ul,
.home2 .proCard ul{margin:12px 0 14px 18px;padding:0;color:#2d3f52;line-height:1.7}
.home2 .goalCard a,
.home2 .proBtn{font-weight:900;color:#1c5abb}
.home2 .dualGrid{display:grid;grid-template-columns:1.04fr .96fr;gap:14px;margin-top:18px}
.home2 .ctaBox{
  border-radius:26px;
  padding:26px;
  background:linear-gradient(180deg, rgba(11,43,74,.96), rgba(18,59,99,.92));
  color:#fff;
  box-shadow:var(--shadow-md);
}
.home2 .ctaBox h2{margin:12px 0 10px;font-size:clamp(28px, 4vw, 46px);line-height:1.02}
.home2 .ctaBox p{margin:0 0 18px;color:rgba(255,255,255,.9);font-size:18px;line-height:1.65}
.home2 .ctaBtns{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
  justify-content:center;
}

/* les deux premiers boutons */
.home2 .ctaBtns a:nth-child(1),
.home2 .ctaBtns a:nth-child(2){
  flex:1 1 calc(50% - 6px);
}

/* le troisième bouton */
.home2 .ctaBtns a:nth-child(3){
  flex:0 0 auto;
  margin-left:auto;
  margin-right:auto;
}
.home2 .miniInfoCol{display:grid;gap:12px}
.home2 .miniInfo{
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:14px;
}

.home2 .miniInfo i{
  font-style:normal;
  font-size:26px;
  line-height:1;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.home2 .miniInfo > div{
  flex:1 1 auto;
}

.home2 .miniInfo b{
  display:block;
  margin-bottom:6px;
  color:var(--navy);
  font-size:17px;
  line-height:1.3;
}

.home2 .miniInfo span{
  display:block;
  color:#4b5c6d;
  line-height:1.6;
}

.home2 .catalogBar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  padding:20px 22px;
  background:linear-gradient(180deg, rgba(11,43,74,.94), rgba(18,59,99,.92));
  color:#fff;
}
.home2 .detailTop h2{margin:0 0 4px;font-size:38px;line-height:1.03}
.home2 .detailTop .small{font-size:15px;line-height:1.5;color:rgba(255,255,255,.84)}
.home2 .barRight{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.home2 .tabs{display:flex;gap:8px;flex-wrap:wrap}
.home2 .tabWrap{position:relative}
.home2 .tab,
.home2 .search{
  min-height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.10);
  color:#fff;
}
.home2 .tab{
  padding:0 16px;
  font-weight:900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.home2 .searchWrap{position:relative;flex:0 1 410px;min-width:270px}
.home2 .search{display:flex;align-items:center;gap:12px;padding:0 14px}
.home2 .search input{border:0;outline:0;background:transparent;color:#fff;width:100%}
.home2 .search input::placeholder{color:rgba(255,255,255,.66)}
.home2 .drop,
.home2 .searchResults{
  display:none;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:calc(100% + 4px);
  width:min(420px,92vw);
  padding:8px;
  border-radius:16px;
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
  z-index:20;
}
.home2 .tabWrap.open > .drop{display:block}
.home2 .searchResults.show{display:block}
.home2 .dropHead{padding:6px 6px 6px;border-bottom:1px solid var(--line-soft);margin-bottom:8px}
.home2 .dropGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:2px;
  max-height:260px;
  overflow:auto;
  padding:2px;
}
.home2 .dropItem,
.home2 .srItem{
  display:block;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.home2 .dropItem:hover,
.home2 .srItem:hover{background:#f7fbff;border-color:var(--line)}
.home2 .dropItem .code,
.home2 .srCode{
  display:block;
  font-weight:900;
  color:var(--navy);
  font-size:13px;
  line-height:1.15;
}

.home2 .dropItem .desc,
.home2 .srDesc{
  display:block;
  font-size:11px;
  line-height:1.25;
  color:var(--muted);
  margin-top:1px;
}
.home2 .pill{
  display:inline-flex;
  align-items:center;
  margin-left:8px;
  padding:2px 8px;
  border-radius:999px;
  background:#edf5ff;
  color:#2c5c93;
  font-size:11px;
  font-weight:900;
}
.home2 .detailWrap{background:#fff;padding:22px}
.home2 .detailCard{display:grid;gap:16px}
.home2 .heroMini{
  position:relative;
  overflow:hidden;
  min-height:310px;
  border-radius:24px;
  padding:24px;
  background:
    linear-gradient(135deg, rgba(11,43,74,.45), rgba(31,111,255,.18)),
    url("/img/uscisvisa.webp") center/cover no-repeat;
  color:#fff;
}
.home2 .tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:12px;
  font-weight:900;
}
.home2 .heroMini h3{margin:14px 0 10px;font-size:56px;line-height:1}
.home2 .heroMini p{margin:0;max-width:42ch;color:rgba(255,255,255,.9);font-size:17px;line-height:1.7}
.home2 .grid2{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.home2 .metric,
.home2 .info{
  border-radius:18px;
  border:1px solid var(--line-soft);
  background:#f8fbff;
  padding:16px;
}
.home2 .metric b,
.home2 .info h4{display:block;margin:0 0 8px;color:#334155;font-size:14px}
.home2 .metric span{font-size:15px;color:#415164}
.home2 .metric .blue{color:#1d4ed8;font-weight:900}
.home2 .metric .green{color:#12804a;font-weight:900}
.home2 .info .bullets{margin:0;padding-left:18px;color:#34465a;line-height:1.75}
.home2 .infoPills{grid-template-columns:repeat(3,1fr)}
.home2 .infoPill b{display:block;margin-bottom:6px;color:var(--navy)}
.home2 .infoPill span{color:#506173;line-height:1.55}

.footer2Wrap{padding:0 0 34px}

.footer2Wrap .footerPanel{
  padding:20px 0 0;
  border:none;
  background:transparent;
  box-shadow:none;
  border-radius:0;
  color:var(--navy);
}
.footer2Wrap .footerTopCta{
  display:none;
}
.footer2Wrap .footerPill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  font-size:12px;
  font-weight:900;
}
.footer2Wrap h2{margin:12px 0 10px;font-size:clamp(28px, 4vw, 42px);line-height:1.04}
.footer2Wrap p{
  margin:0;
  color:var(--text);
  font-size:16px;
  line-height:1.7;
}
.footer2Wrap .footerTopButtons{display:flex;justify-content:flex-end;gap:12px;flex-wrap:wrap}
.footer2Wrap .btnCtaFooter,
.footer2Wrap .btnGhostFooter{
  min-height:50px;
  padding:0 18px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
}
.footer2Wrap .btnCtaFooter{background:#fff;color:var(--navy)}
.footer2Wrap .btnGhostFooter{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.14);color:#fff}
.footer2Wrap .footerGrid{
  display:grid;
  grid-template-columns:1.2fr 1.2fr 1fr 1fr;
  column-gap:80px;
  row-gap:18px;
  padding:22px 0;
  align-items:start;
  width:100%;
}
.footer2Wrap .footerGrid > div{
  min-width:0;
}
.footer2Wrap .footerGrid h3{
  margin:0 0 14px;
  font-size:17px;
  font-weight:900;
  color:var(--navy);
}
.footer2Wrap .footerGrid a{
  display:block;
  padding:7px 0;
  color:var(--text);
}
.footer2Wrap .footerGrid a:hover{
  color:var(--navy);
}
.footer2Wrap .footerNote{font-size:14px;line-height:1.7;color:rgba(255,255,255,.8)}
.footer2Wrap .footerBottom{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  padding-top:18px;
  border-top:1px solid var(--line-soft);
  color:var(--muted);
  font-size:14px;
}
.footer2Wrap .footerBottomLinks{display:flex;gap:14px;flex-wrap:wrap}

.footer2Wrap .footerGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  column-gap:80px;
  row-gap:18px;
  padding:22px 0;
  align-items:start;
  width:100%;
}

.footer2Wrap .footerGrid h3{
  margin:0 0 12px;
  font-size:18px;
  color:var(--navy);
}

.footer2Wrap .footerGrid a{
  display:block;
  padding:7px 0;
  color:var(--text);
  text-decoration:none;
}

.footer2Wrap .footerGrid a:hover{
  color:var(--navy);
}

.footer2Wrap .footerNote{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}

.footer2Wrap .footerBottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding-top:18px;
  border-top:1px solid var(--line-soft);
  color:var(--muted);
}

.footer2Wrap .footerBottomLinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer2Wrap .footerBottomLinks a{
  color:var(--text);
  text-decoration:none;
}

.footer2Wrap .footerBottomLinks a:hover{
  color:var(--navy);
}

.footer2Wrap .footerDisclaimer{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--line-soft);
  width:100%;
  max-width:none;
  font-size:12.5px;
  line-height:1.8;
  color:#66758a;
}

@media (max-width:1180px){
  header .nav{gap:2px}
  header .navLink{padding:0 10px;font-size:13px}
  .hero2 .trustBar{grid-template-columns:repeat(2,1fr)}
  .home2 .cards4{grid-template-columns:repeat(2,1fr)}
  .home2 .grid2{grid-template-columns:repeat(2,1fr)}
  .footer2Wrap .footerGrid{grid-template-columns:repeat(2,1fr)}
}

@media (min-width:961px){
  header .navItem.hasMegaCenter{
    position:relative;
  }

  header .navItem.hasMegaCenter::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:18px;
  }

  header .navItem.hasMegaCenter .menu{
    position:absolute;
    top:calc(100% + 6px);
    width:min(960px,92vw);
  }

  header #navStart .menu{
    left:0;
    transform:none;
  }

  header #navGuides .menu{
    left:50%;
    transform:translateX(-50%);
  }

  header #navPro .menu{
    left:50%;
    transform:translateX(-50%);
  }

  header #navResources .menu{
    right:0;
    left:auto;
    transform:none;
  }

  header #navHelp .menu{
    right:0;
    left:auto;
    transform:none;
  }
}

@media (max-width:960px){
  header .h1row{grid-template-columns:auto auto 1fr auto;min-height:74px;gap:10px}
    header .brand{
    display:flex;
    align-items:center;
    min-width:42px;
    flex:0 0 auto;
  }

  header .brand a{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  header .brand img{
    height:42px;
    width:auto;
    max-width:none;
    object-fit:contain;
  }
  header .burgerBtn{display:inline-flex}
  header .nav{
    display:none;
    position:absolute;
    top:calc(100% + 10px);
    left:12px;
    right:12px;
    padding:12px;
    border-radius:22px;
    background:rgba(255,255,255,.94);
    border:1px solid var(--line);
    box-shadow:var(--shadow-lg);
  }
  header .nav.mobileOpen{
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }
  header .nav.mobileOpen .navItem{width:100%}
  header .nav.mobileOpen .navLink{justify-content:space-between;background:#fff;border:1px solid var(--line-soft)}
  header .nav.mobileOpen .menu{
    position:static;
    transform:none;
    width:100%;
    margin-top:8px;
    box-shadow:none;
    border-radius:16px;
  }
  header .gridMenu{grid-template-columns:1fr}
  header .h1right{margin-left:auto}
  header .btnGhost{display:none}

  .home2 .dualGrid,
  .footer2Wrap .footerTopCta,
  .home2 .stepGrid,
  .home2 .proGrid,
  .footer2Wrap .footerGrid,
  .home2 .cards4,
  .home2 .infoPills,
  .home2 .dropGrid{grid-template-columns:1fr}
  .home2 .panelPad,
  .home2 .ctaBox,
  .home2 .detailWrap,
.footer2Wrap .footerPanel{
  padding:20px 0 0;
  border:none;
  background:transparent;
  box-shadow:none;
  border-radius:0;
}

  .hero2 p.lead,
  .home2 .frameText,
  .home2 .ctaBox p{font-size:16px}
  .home2 .catalogBar{align-items:stretch}
  .home2 .barRight,
  .home2 .searchWrap{width:100%;max-width:100%}
  .home2 .tabs{width:100%}
  .home2 .tabWrap{flex:1}
  .home2 .tab{width:100%;justify-content:center}
  .home2 .drop{
    position:static;
    width:100%;
    margin-top:8px;
  }
  .home2 .detailTop h2{font-size:30px}
  .home2 .heroMini h3{font-size:40px}
}

@media (max-width:640px){
  header .brand img{height:40px;width:auto;max-width:none}
  header .btn,
  header .btnCta,
  header .navLink{min-height:44px}
  .hero2 .heroChoiceTop{flex-direction:column}
  .home2 .grid2{grid-template-columns:1fr}
  .footer2Wrap .footerBottom{flex-direction:column;align-items:flex-start}
}

.hero2 .pathfinderTop{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  gap:16px;
  margin-bottom:10px;
}

.hero2 .pathfinderStep{
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
  color:#4b5563;
  text-align:left;
}

.hero2 .pathfinderResultLabel{
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6b7280;
  text-align:left;
}

.hero2 .pathfinderLead{
  margin:0 0 20px;
  font-size:18px;
  line-height:1.65;
  color:#526273;
}

.hero2 .pathfinderPrimaryCta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 26px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  color:var(--navy);
  font-size:18px;
  font-weight:900;
  text-decoration:none;
}

.hero2 .pathfinderPrimaryCta:hover{
  background:#f8fbff;
  border-color:#cfe0f3;
  box-shadow:var(--shadow-md);
}

.hero2 .pathfinderAltBox{
  margin:26px auto 0;
  max-width:780px;
  padding:20px;
  border-radius:22px;
  background:linear-gradient(180deg, #f7fbff, #eef6ff);
  border:1px solid #dbe8f6;
  box-shadow:var(--shadow-sm);
}

.hero2 .pathfinderAltTitle{
  margin:0 0 14px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#5a6b7d;
}

.hero2 .pathfinderAltLinks{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.hero2 .pathfinderAltLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 18px;
  border-radius:16px;
  background:#fff;
  border:1px solid #d7e4f2;
  color:var(--navy);
  font-size:15px;
  font-weight:900;
  text-decoration:none;
}

.hero2 .pathfinderAltLink:hover{
  background:#ffffff;
  border-color:#bfd7ef;
  box-shadow:var(--shadow-sm);
}

.hero2 .pathfinderNote{
  margin:22px auto 0;
  max-width:860px;
  font-size:16px;
  line-height:1.65;
  color:#627184;
}

.hero2 .pathfinderBottomActions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:24px;
  flex-wrap:wrap;
}

.hero2 .pathfinderActionBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid #d7e4f2;
  background:#f8fbff;
  color:var(--navy);
  font-size:15px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
}

.hero2 .pathfinderActionBtn:hover{
  background:#eef6ff;
  border-color:#bfd7ef;
}

@media (max-width:960px){
  .hero2 .pathfinderTop{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:16px;
  }

  .hero2 .pathfinderLead{
    font-size:16px;
  }

  .hero2 .pathfinderPrimaryCta{
    width:100%;
    font-size:16px;
  }

  .hero2 .pathfinderAltLinks{
    flex-direction:column;
    align-items:stretch;
  }

  .hero2 .pathfinderAltLink{
    width:100%;
  }

  .hero2 .pathfinderBottomActions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero2 .pathfinderActionBtn{
    width:100%;
  }
}

.hero2 .pathfinderCard{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  text-align:left;
}

.hero2 .pathfinderCardIcon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#f3f7fc;
  border:1px solid #dbe7f3;
  font-size:20px;
  flex:0 0 auto;
}

.hero2 .pathfinderCardText{
  display:block;
  line-height:1.2;
  font-size:18px;
  font-weight:900;
}

.home2 .section-pill{
  display:flex;
  justify-content:center;
  margin:0 0 18px;
}

.home2 .section-pill{
  min-height:54px;
  width:max-content;
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
  padding:0 28px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-sm);
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  font-size:18px;
  color:var(--navy);
}

.catalogCallout{
  display:flex;
  justify-content:center;
  margin:34px auto 0;
}

.catalogCallout a{
  min-height:54px;
  width:min(980px,100%);
  padding:0 28px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-sm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:900;
  font-size:18px;
  color:#1f5fb9;
  text-decoration:none;
}

.catalogCallout a:hover{
  background:#f7fbff;
  border-color:var(--line);
}

@media (max-width:960px){
  .home2 .section-pill{
    width:100%;
    min-height:50px;
    font-size:16px;
    padding:0 18px;
  }

  .catalogCallout a{
    width:100%;
    min-height:50px;
    font-size:15px;
    padding:0 18px;
  }
}

.home2 > section:first-of-type{
  padding-top:0;
  margin-top:-1px;
}

.home2 .ctaBtns a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid var(--line-soft);
  background:#fff;
  color:var(--navy);
  font-weight:900;
  text-decoration:none;
  box-shadow:var(--shadow-sm);
  transition:all .18s ease;
}

.home2 .ctaBtns a:hover{
  background:#f7fbff;
  border-color:var(--line);
  box-shadow:var(--shadow-md);
}

.home2 .dualGrid h2{
  font-size:clamp(32px, 3.2vw, 44px);
  line-height:1.15;
  text-align:center;
  margin-bottom:16px;
}

.home2 .dualGrid p{
  text-align:center;
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}
.home2 .ctaBtns{
  margin-top:20px;
}

.home2 .detailActions{
  display:flex;
  gap:12px;
  margin-top:18px;
  justify-content:center;
  align-items:center;
}

.home2 .detailBtn{
  min-height:50px;
  padding:0 18px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  text-decoration:none;
  transition:all .18s ease;
}

.home2 .detailBtnPrimary{
  background:linear-gradient(180deg, var(--blue-2), var(--blue));
  color:#fff;
  border:1px solid rgba(31,111,255,.16);
  box-shadow:0 14px 28px rgba(31,111,255,.20);
}

.home2 .detailBtnPrimary:hover{
  transform:translateY(-1px);
}

.home2 .detailBtnGhost{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line-soft);
  box-shadow:var(--shadow-sm);
}

.home2 .detailBtnGhost:hover{
  background:#f7fbff;
  border-color:var(--line);
}

.home2 .goalCard{
  height:100%;
}

.home2 .goalCard a{
  margin-top:auto;
}
.home2 .tabWrap::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:10px;
}

.home2 .proIntro{
  padding-top:6px;
}

.home2 #pro .panelPad{
  background:transparent;
  border:none;
  box-shadow:none;
  border-radius:0;
}
/* icon + title align */
.home2 .goalCard{
  display:grid;
  grid-template-columns:44px 1fr;
  grid-template-areas:
    "icon title"
    "text text"
    "list list"
    "link link";
  column-gap:12px;
  row-gap:8px;
}

.home2 .goalIcon{
  grid-area:icon;
  margin:0;
}

.home2 .goalCard h3{
  grid-area:title;
  margin:0;
  display:flex;
  align-items:center;
  line-height:1.2;
  min-height:44px;
}

.home2 .goalCard p{
  grid-area:text;
}

.home2 .goalCard ul{
  grid-area:list;
}

.home2 .goalCard a{
  grid-area:link;
}

@media (max-width:960px){
  .home2 #catalog .tabs{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .home2 #catalog .tabWrap{
    width:100%;
    flex:none;
  }

.home2 #catalog .tab{
  width:100%;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  border-radius:16px;
  font-size:15px;
  font-weight:900;
}

  .home2 #catalog .tabWrap::after{
    display:none;
  }

  .home2 #catalog .drop{
    position:static;
    left:auto;
    transform:none;
    top:auto;
    width:100%;
    margin-top:8px;
    padding:10px;
    border-radius:16px;
    box-shadow:none;
  }

  .home2 #catalog .dropGrid{
    max-height:none;
    overflow:visible;
    gap:6px;
  }

  .home2 #catalog .dropItem{
    padding:12px 12px;
    border-radius:12px;
    border:1px solid var(--line-soft);
    background:#fff;
  }

  .home2 #catalog .dropItem .code{
    font-size:14px;
    line-height:1.2;
  }

  .home2 #catalog .dropItem .desc{
    font-size:12px;
    line-height:1.35;
    margin-top:3px;
  }
}

.hero2 .kicker-pill{
  display:inline-flex;
  margin:0 auto 18px;
  justify-content:center;
  text-align:center;
}
.heroHero{
  text-align:center;
}