
/* ADKA Business Opportunity — compact header + highlighted option cards */

/* ---------- Refined header ---------- */
.refined-header .refined-nav-wrap{
  min-height:72px;
  gap:18px;
}

.refined-brand{
  min-width:180px;
  line-height:1.05;
}

.refined-brand strong{
  display:block;
  font-size:17px;
  letter-spacing:.01em;
}

.refined-brand span{
  display:block;
  margin-top:4px;
  color:#66717b;
  font-size:10px;
  white-space:nowrap;
}

.refined-main-nav{
  gap:12px;
  font-size:13px;
  align-items:center;
}

.refined-main-nav > a:not(.nav-cta),
.nav-more-toggle,
.nav-account-link{
  white-space:nowrap;
}

.nav-more{
  position:relative;
}

.nav-more-toggle{
  border:0;
  background:transparent;
  padding:9px 4px;
  font:inherit;
  color:inherit;
  cursor:pointer;
}

.nav-more-toggle:hover{
  color:var(--orange);
}

.nav-more-menu{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%);
  min-width:170px;
  padding:8px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  box-shadow:0 14px 34px rgba(20,30,40,.13);
  z-index:200;
}

.nav-more.open .nav-more-menu{
  display:grid;
}

.nav-more-menu a{
  padding:9px 11px;
  border-radius:8px;
}

.nav-more-menu a:hover{
  background:var(--soft);
}

.nav-account-group{
  display:flex;
  align-items:center;
  gap:7px;
  margin-left:3px;
  padding-left:10px;
  border-left:1px solid var(--border);
}

.nav-account-link{
  font-size:12px;
  color:var(--navy);
  font-weight:700;
}

.nav-account-join{
  padding:8px 10px;
  border-radius:999px;
  background:#fff4ed;
  color:var(--orange);
}

.refined-contact{
  padding:9px 13px;
}

/* Main JS injects the persistent cart into .main-nav. Keep it compact. */
.refined-main-nav .cart-nav-highlight{
  width:40px;
  height:40px;
  padding:0 !important;
  margin:0 1px;
}

/* ---------- Highlighted opportunity cards ---------- */
.opportunity-paths{
  padding-top:58px;
  padding-bottom:58px;
}

.opportunity-paths-intro{
  max-width:780px;
  margin:0 0 30px;
}

.opportunity-paths-intro h2{
  margin:7px 0 10px;
  font-size:clamp(30px,3vw,44px);
  line-height:1.08;
}

.opportunity-paths-intro > p:last-child{
  margin:0;
  color:#5f6d7a;
  font-size:18px;
  line-height:1.6;
}

.opportunity-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.opportunity-choice{
  min-height:330px;
  border-radius:20px;
  padding:32px;
  display:flex;
  flex-direction:column;
  box-shadow:0 12px 30px rgba(10,39,75,.13);
}

.opportunity-choice h2{
  font-size:clamp(29px,2.7vw,42px);
  line-height:1.08;
  margin:24px 0 16px;
  color:#fff;
}

.opportunity-choice > p:not(.choice-highlight){
  font-size:17px;
  line-height:1.65;
  margin:0;
  color:#fff;
}

.choice-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.choice-number{
  font-weight:800;
  letter-spacing:.16em;
  font-size:13px;
}

.choice-badge{
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.07em;
  padding:10px 13px;
  border-radius:999px;
}

.choice-highlight{
  margin:auto 0 0;
  padding-top:22px;
  font-size:15px;
  font-weight:800;
  line-height:1.45;
  color:#fff;
}

.choice-highlight span{padding:0 7px}

.opportunity-choice-navy{
  background:#0b2f5b;
  color:#fff;
}
.opportunity-choice-navy .choice-number{color:#ff6a13}
.opportunity-choice-navy .choice-badge{background:#ff6a13;color:#fff}
.opportunity-choice-navy .choice-highlight{border-top:1px solid rgba(255,255,255,.24)}

.opportunity-choice-orange{
  background:#f45a0b;
  color:#fff;
}
.opportunity-choice-orange .choice-number{color:#0b2f5b}
.opportunity-choice-orange .choice-badge{background:#0b2f5b;color:#fff}
.opportunity-choice-orange .choice-highlight{border-top:1px solid rgba(255,255,255,.32)}

/* ---------- Responsive ---------- */
@media(max-width:1100px){
  .refined-main-nav{
    gap:9px;
    font-size:12px;
  }
  .refined-brand span{
    display:none;
  }
  .refined-brand{
    min-width:108px;
  }
}

@media(max-width:920px){
  .refined-main-nav{
    display:none;
  }
  .refined-main-nav.open{
    display:flex;
  }

  .nav-more{
    width:100%;
  }

  .nav-more-toggle{
    width:100%;
    text-align:left;
    padding:8px 0;
  }

  .nav-more-menu{
    position:static;
    transform:none;
    box-shadow:none;
    border:0;
    padding:2px 0 3px 12px;
    min-width:0;
  }

  .nav-account-group{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    margin-left:0;
    padding:10px 0 0;
    border-left:0;
    border-top:1px solid var(--border);
  }

  .refined-main-nav .cart-nav-highlight{
    width:42px;
    height:42px;
  }
}

@media(max-width:820px){
  .opportunity-choice-grid{grid-template-columns:1fr}
  .opportunity-choice{min-height:0}
}

@media(max-width:520px){
  .opportunity-paths{padding-top:42px;padding-bottom:42px}
  .opportunity-choice{padding:25px 22px;border-radius:16px}
  .choice-topline{align-items:flex-start}
}
