/* ============================================================
   AIDF Bank — Public Final Stylesheet
   Mobile-first · CSS Custom Properties · All 30 sections
   ============================================================ */

/* ----------------------------------------------------------
   SECTION 1: GLOBAL RESET & OVERFLOW PREVENTION
   ---------------------------------------------------------- */
:root {
  --af-green: #007A4D;
  --af-mint: #14B87A;
  --af-black: #050505;
  --af-white: #FFFFFF;
  --af-bg: #F5F7F6;
  --af-text: #111111;
  --af-border: #DDE5E1;
  --af-gold: #C9A43B;
  --af-navy: #0A1A3A;
}

*,*::before,*::after{box-sizing:border-box}

html,body{
  max-width:100%;
  overflow-x:hidden;
  margin:0;
  padding:0;
}

img,video{max-width:100%;height:auto;display:block}

.aidf-full-bleed-main{
  padding:0;
  margin:0;
  max-width:100%;
  width:100%;
}

.row{margin-left:0;margin-right:0}
.row > [class*="col-"]{padding-left:0;padding-right:0}

/* ----------------------------------------------------------
   SECTION 2: HOMEPAGE OVERRIDES (mobile only)
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  body.page-home .li-utility-bar,
  body.page-home .li-navbar,
  body.page-home .li-quick-links,
  body.page-home .li-mobile-menu-overlay,
  body.page-home .li-mobile-menu,
  body.page-home .li-search-overlay{
    display:none !important;
  }

  body.page-home .aidf-full-bleed-main{
    padding:0;
    margin:0;
  }

  body.page-home .li-footer-cta,
  body.page-home .li-footer,
  body.page-home .li-back-to-top{
    display:none !important;
  }
}

/* Reference-style menu modal for public navigation. */
.ah-menu-backdrop{
  position:fixed;
  inset:0;
  z-index:78;
  display:none;
  background:rgba(0,0,0,.24);
}
.ah-menu-backdrop.is-open{display:block}
.ah-mobile-menu{
  position:fixed;
  z-index:79;
  top:142px;
  left:0;
  right:0;
  display:none;
  max-height:calc(100dvh - 142px);
  overflow:auto;
  background:#f1f1f1;
  color:#050505;
  box-shadow:0 18px 38px rgba(0,0,0,.18);
  transform:none!important;
  transition:none;
}
.ah-mobile-menu.is-open{display:block}
.ah-mobile-menu-list{
  width:min(1180px,calc(100% - 80px));
  margin:0 auto;
  padding:34px 0 28px;
}
.ah-mobile-menu-list a{
  min-height:86px;
  display:grid;
  grid-template-columns:1fr 32px;
  align-items:center;
  gap:18px;
  color:#070707;
  text-decoration:none;
}
.ah-mobile-menu-list a strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:33px;
  line-height:1.05;
  font-weight:500;
  letter-spacing:0;
}
.ah-mobile-menu-list a small{
  display:block;
  margin-top:4px;
  color:#6f6f6f;
  font-size:19px;
  line-height:1.2;
  font-weight:800;
}
.ah-mobile-menu-list a>i{
  color:#050505;
  font-size:25px;
  justify-self:end;
}
.ah-mobile-menu-list hr{
  margin:16px 0;
  border:0;
  border-top:2px solid #676767;
  opacity:1;
}
.ah-menu-open .ah-nav-action[data-ah-menu-toggle]{
  background:#f1f1f1;
  color:#050505;
}
.ah-menu-open .ah-nav-action[data-ah-menu-toggle] i{
  font-size:28px;
}
@media(min-width:768px){
  .ah-menu-open .ah-page,
  .ah-menu-open{
    overflow:hidden;
  }
}
@media(max-width:767.98px){
  .ah-menu-backdrop{
    top:142px;
    background:rgba(0,0,0,.12);
  }
  .ah-mobile-menu{
    top:142px;
    max-height:calc(100dvh - 142px);
    box-shadow:none;
  }
  .ah-mobile-menu-list{
    width:calc(100% - 40px);
    padding:34px 0 22px;
  }
  .ah-mobile-menu-list a{
    min-height:90px;
    grid-template-columns:1fr 26px;
  }
  .ah-mobile-menu-list a strong{
    font-size:30px;
  }
  .ah-mobile-menu-list a small{
    font-size:19px;
  }
  .ah-mobile-menu-list a>i{
    font-size:23px;
  }
  .ah-mobile-menu-list hr{
    margin:17px 0;
  }
  .aidf-home-v3 .ah-menu-open,
  body.ah-menu-open{
    overflow:hidden;
  }
  body.ah-menu-open .ah-nav-action[data-ah-menu-toggle]{
    background:#f1f1f1;
    color:#050505;
  }
  body.ah-menu-open .ah-nav-action[data-ah-menu-toggle] i{
    font-size:24px;
  }
}

/* ----------------------------------------------------------
   SECTION 3: MOBILE TOP SEGMENT BAR
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-seg{
    display:flex;
    background:#050505;
    width:100%;
    height:56px;
    position:relative;
    z-index:1502;
    overflow:auto;
    scrollbar-width:none;
  }
  .af-mob-seg::-webkit-scrollbar{display:none}

  .af-mob-seg-inner{
    display:flex;
    align-items:stretch;
    width:100%;
    min-width:max-content;
    height:100%;
  }

  .af-mob-seg-link{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 1.1rem;
    color:rgba(255,255,255,.65);
    font-size:.8rem;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
    transition:background .2s,color .2s;
  }

  .af-mob-seg-link:hover{
    color:#fff;
    background:rgba(255,255,255,.06);
  }

  .af-mob-seg-link.is-active{
    background:#007A4D;
    color:#fff;
    font-weight:800;
  }
}

/* ----------------------------------------------------------
   SECTION 4: MOBILE HEADER BAR
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:linear-gradient(135deg,#007A4D,#005C3A);
    width:100%;
    height:68px;
    padding:0 12px;
    position:relative;
    z-index:1501;
  }

  .af-mob-header-logo{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    flex-shrink:0;
  }

  .af-mob-header-logo-icon{
    width:36px;
    height:36px;
    background:linear-gradient(135deg,#C9A43B,#A8872E);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#050505;
    font-size:1rem;
    flex-shrink:0;
  }

  .af-mob-header-logo-text{
    font-size:1rem;
    font-weight:900;
    color:#fff;
    line-height:1.1;
  }

  .af-mob-header-actions{
    display:flex;
    align-items:center;
    gap:2px;
  }

  .af-mob-header-btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:2px;
    padding:6px 10px;
    background:none;
    border:none;
    color:rgba(255,255,255,.85);
    font-size:.6rem;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
    transition:color .2s;
    -webkit-tap-highlight-color:transparent;
    border-radius:6px;
  }

  .af-mob-header-btn i{font-size:1.15rem}

  .af-mob-header-btn:hover,
  .af-mob-header-btn:active{
    color:#fff;
    background:rgba(255,255,255,.1);
  }
}

/* ----------------------------------------------------------
   SECTION 5: MOBILE HERO
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-hero-img-wrap{
    width:100%;
    height:350px;
    overflow:hidden;
    background:#0A1A3A;
    position:relative;
  }

  .af-mob-hero-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .af-mob-hero-content{
    background:#0D2818;
    width:100%;
    padding:28px 22px 34px;
  }

  .af-mob-hero-content h1{
    font-size:1.7rem;
    font-weight:950;
    line-height:1.08;
    color:#fff;
    margin:0 0 10px;
    letter-spacing:-.02em;
  }

  .af-mob-hero-content p{
    font-size:.88rem;
    line-height:1.5;
    color:rgba(255,255,255,.7);
    margin:0 0 18px;
  }

  .af-mob-hero-cta{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .af-btn-white{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    padding:14px 20px;
    background:#fff;
    color:#0D2818;
    border:none;
    border-radius:12px;
    font-size:.92rem;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
    transition:transform .15s;
    min-height:50px;
  }

  .af-btn-white:active{transform:scale(.97)}

  .af-btn-ghost{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:10px 16px;
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.8);
    border:1px solid rgba(255,255,255,.15);
    border-radius:10px;
    font-size:.82rem;
    font-weight:700;
    text-decoration:none;
    cursor:pointer;
    transition:background .2s;
    min-height:44px;
  }

  .af-btn-ghost:active{background:rgba(255,255,255,.15)}
}

/* ----------------------------------------------------------
   SECTION 6: MOBILE QUICK ACTION BAR
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-quickbar{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:16px;
    background:#F5F7F6;
  }

  .af-mob-quickbar-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 12px;
    background:#fff;
    border-radius:12px;
    text-decoration:none;
    box-shadow:0 1px 4px rgba(0,0,0,.06);
    transition:transform .15s;
  }

  .af-mob-quickbar-item:active{transform:scale(.97)}

  .af-mob-quickbar-icon{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
    color:#fff;
    flex-shrink:0;
  }

  .af-mob-quickbar-text{
    display:flex;
    flex-direction:column;
    gap:1px;
  }

  .af-mob-quickbar-text strong{
    font-size:.82rem;
    font-weight:700;
    color:#111;
  }

  .af-mob-quickbar-text span{
    font-size:.68rem;
    color:#5a6478;
    line-height:1.2;
  }
}

/* ----------------------------------------------------------
   SECTION 7: MOBILE BANKING PROMO
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-promo{
    padding:24px 16px;
    background:#007A4D;
    color:#fff;
    position:relative;
    overflow:hidden;
  }

  .af-mob-promo-inner{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .af-mob-promo-badge{
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:.65rem;
    font-weight:800;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:#14B87A;
    background:rgba(255,255,255,.12);
    padding:4px 10px;
    border-radius:4px;
  }

  .af-mob-promo h2{
    font-size:1.35rem;
    font-weight:900;
    line-height:1.15;
    margin:0;
  }

  .af-mob-promo p{
    font-size:.82rem;
    line-height:1.45;
    color:rgba(255,255,255,.8);
    margin:0;
  }

  .af-mob-promo-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }

  .af-mob-promo .af-btn-white{
    width:auto;
    padding:12px 20px;
    font-size:.85rem;
  }

  .af-mob-promo .af-btn-outline-white{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:12px 20px;
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.3);
    border-radius:10px;
    font-size:.85rem;
    font-weight:700;
    text-decoration:none;
    cursor:pointer;
  }
}

/* ----------------------------------------------------------
   SECTION 8: MOBILE SECTION COMMON
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-section{
    padding:24px 16px 28px;
    width:100%;
  }

  .af-mob-section--alt{
    background:#F5F7F6;
  }

  .af-mob-section h2{
    font-size:1.15rem;
    font-weight:800;
    color:#111;
    margin:0 0 4px;
  }

  .af-mob-section p{
    font-size:.82rem;
    color:#5a6478;
    margin:0 0 16px;
  }

  .af-mob-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;
  }

  .af-mob-section-head h2{margin:0}
}

/* ----------------------------------------------------------
   SECTION 9: MOBILE PRODUCTS
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-products{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    width:100%;
  }

  .af-mob-product-card{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:16px 14px;
    background:#fff;
    border-radius:14px;
    text-decoration:none;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
    transition:transform .15s;
    border:1px solid rgba(0,0,0,.04);
  }

  .af-mob-product-card:active{transform:scale(.97)}

  .af-mob-product-card-icon{
    width:36px;
    height:36px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
    flex-shrink:0;
  }

  .af-mob-product-card h3{
    font-size:.85rem;
    font-weight:800;
    color:#111;
    margin:0;
  }

  .af-mob-product-card p{
    font-size:.72rem;
    color:#5a6478;
    margin:0;
    line-height:1.35;
  }
}

/* ----------------------------------------------------------
   SECTION 10: MOBILE STATS
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .af-mob-stat{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:18px 12px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    border:1px solid rgba(0,0,0,.04);
  }

  .af-mob-stat strong{
    font-size:1.5rem;
    font-weight:950;
    color:#007A4D;
    line-height:1.1;
  }

  .af-mob-stat span{
    font-size:.72rem;
    font-weight:600;
    color:#5a6478;
    margin-top:2px;
  }
}

/* ----------------------------------------------------------
   SECTION 11: MOBILE HELP/SUPPORT CARDS
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-support-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .af-mob-support-card{
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:18px 14px;
    background:#fff;
    border-radius:14px;
    text-decoration:none;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    border:1px solid rgba(0,0,0,.04);
  }

  .af-mob-support-card:active{transform:scale(.96)}

  .af-mob-support-card i{
    font-size:1.4rem;
    color:#007A4D;
  }

  .af-mob-support-card strong{
    font-size:.82rem;
    font-weight:700;
    color:#111;
  }

  .af-mob-support-card span{
    font-size:.72rem;
    color:#5a6478;
    line-height:1.35;
  }
}

/* ----------------------------------------------------------
   SECTION 12: MOBILE PREMIER BANNER
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-premier{
    padding:24px 16px;
    background:linear-gradient(135deg,#050505,#1a1a2e);
    color:#fff;
  }

  .af-mob-premier-inner{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .af-mob-premier-badge{
    display:inline-flex;
    font-size:.6rem;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#C9A43B;
    margin-bottom:4px;
  }

  .af-mob-premier h2{
    font-size:1.25rem;
    font-weight:900;
    margin:0;
  }

  .af-mob-premier p{
    font-size:.82rem;
    color:rgba(255,255,255,.7);
    margin:0;
    line-height:1.45;
  }

  .af-mob-premier .af-btn-white{
    width:auto;
    padding:12px 24px;
  }
}

/* ----------------------------------------------------------
   SECTION 13: MOBILE BANKING ONLINE
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-banking-grid{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .af-mob-banking-card{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    text-decoration:none;
    border:1px solid rgba(0,0,0,.04);
  }

  .af-mob-banking-card-icon{
    width:44px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    background:#F5F7F6;
    color:#007A4D;
    flex-shrink:0;
  }

  .af-mob-banking-card-text{flex:1}

  .af-mob-banking-card-text strong{
    font-size:.85rem;
    font-weight:700;
    color:#111;
    display:block;
  }

  .af-mob-banking-card-text span{
    font-size:.72rem;
    color:#5a6478;
    line-height:1.35;
  }
}

/* ----------------------------------------------------------
   SECTION 14: MOBILE APP DOWNLOAD
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-app-banner{
    padding:24px 16px;
    background:linear-gradient(135deg,#007A4D,#005C3A);
    color:#fff;
    text-align:center;
  }

  .af-mob-app-banner h2{
    font-size:1.25rem;
    font-weight:900;
    margin:0 0 6px;
  }

  .af-mob-app-banner p{
    font-size:.82rem;
    color:rgba(255,255,255,.75);
    margin:0 0 16px;
  }

  .af-mob-app-banner-actions{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
  }
}

/* ----------------------------------------------------------
   SECTION 15: MOBILE NEWS
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-news{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .af-mob-news-card{
    display:block;
    padding:16px;
    background:#fff;
    border-radius:14px;
    text-decoration:none;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
    border:1px solid rgba(0,0,0,.04);
  }

  .af-mob-news-card:active{transform:scale(.98)}

  .af-mob-news-tag{
    display:inline-block;
    font-size:.6rem;
    font-weight:800;
    color:#007A4D;
    background:rgba(0,122,77,.08);
    padding:3px 8px;
    border-radius:4px;
    text-transform:uppercase;
    letter-spacing:.05em;
    margin-bottom:6px;
  }

  .af-mob-news-card h3{
    font-size:.85rem;
    font-weight:800;
    color:#111;
    margin:0 0 4px;
  }

  .af-mob-news-card p{
    font-size:.75rem;
    color:#5a6478;
    margin:0;
    line-height:1.35;
  }
}

/* ----------------------------------------------------------
   SECTION 16: MOBILE FOOTER
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  .af-mob-footer{
    width:100%;
    background:#050505;
    padding:28px 16px 80px;
  }

  .af-mob-footer-brand{margin-bottom:20px}

  .af-mob-footer-brand-name{
    font-size:1.1rem;
    font-weight:900;
    color:#fff;
    display:flex;
    align-items:center;
    gap:8px;
  }

  .af-mob-footer-brand-name i{color:#C9A43B}

  .af-mob-footer-brand p{
    font-size:.75rem;
    color:rgba(255,255,255,.5);
    margin:6px 0 0;
    line-height:1.45;
  }

  .af-mob-footer-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:20px;
  }

  .af-mob-footer-col h4{
    font-size:.75rem;
    font-weight:800;
    color:rgba(255,255,255,.45);
    text-transform:uppercase;
    letter-spacing:.08em;
    margin:0 0 8px;
  }

  .af-mob-footer-col a{
    display:block;
    font-size:.78rem;
    font-weight:600;
    color:rgba(255,255,255,.7);
    text-decoration:none;
    padding:4px 0;
    transition:color .2s;
  }

  .af-mob-footer-col a:hover{color:#fff}

  .af-mob-footer-legal{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:14px;
  }

  .af-mob-footer-legal span{
    font-size:.68rem;
    color:rgba(255,255,255,.35);
    display:block;
    margin-bottom:6px;
  }

  .af-mob-footer-legal-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }

  .af-mob-footer-legal-links a{
    font-size:.68rem;
    color:rgba(255,255,255,.45);
    text-decoration:none;
  }

  .af-mob-footer-legal-links a:hover{color:#14B87A}

  .af-mob-footer-social{
    display:flex;
    gap:12px;
    margin-top:16px;
  }

  .af-mob-footer-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.7);
    font-size:1rem;
    text-decoration:none;
    transition:background .2s;
  }

  .af-mob-footer-social a:hover{background:rgba(255,255,255,.15)}
}

/* ----------------------------------------------------------
   SECTION 17: VERY SMALL MOBILE (max-width 360px)
   ---------------------------------------------------------- */
@media(max-width:360px){
  .af-mob-seg{height:48px}
  .af-mob-header{height:58px}
  .af-mob-hero-img-wrap{height:280px}
  .af-mob-hero-content{padding:22px 16px 28px}
  .af-mob-hero-content h1{font-size:1.5rem}
  .af-mob-hero-content p{font-size:.8rem}
  .af-mob-section h2{font-size:1.05rem}
  .af-mob-section p{font-size:.74rem}
  .af-mob-product-card h3{font-size:.78rem}
  .af-mob-product-card p{font-size:.65rem}
  .af-mob-stat strong{font-size:1.3rem}
  .af-mob-stat span{font-size:.65rem}
  .af-mob-support-card strong{font-size:.74rem}
  .af-mob-support-card span{font-size:.65rem}
  .af-mob-promo h2{font-size:1.2rem}
  .af-mob-premier h2{font-size:1.1rem}
  .af-mob-app-banner h2{font-size:1.1rem}
  .af-mob-news-card h3{font-size:.78rem}
  .af-mob-news-card p{font-size:.68rem}
  .af-mob-quickbar-text strong{font-size:.74rem}
  .af-mob-quickbar-text span{font-size:.62rem}

  .af-mob-qa{
    grid-template-columns:repeat(2,1fr) !important;
  }
}

/* ----------------------------------------------------------
   SECTION 18: DESKTOP HEADER/NAV
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-navbar{
    background:linear-gradient(135deg,#007A4D 0%,#00996B 50%,#0A1A3A 100%);
    box-shadow:0 2px 12px rgba(0,0,0,.2);
  }

  .li-navbar-inner{
    max-width:1280px;
    margin:0 auto;
    padding:.7rem 1.5rem;
  }

  .li-navbar-brand-text .li-navbar-brand-name{color:#fff}
  .li-navbar-brand-text .li-navbar-brand-tagline{color:rgba(255,255,255,.7)}

  .li-nav-link{
    color:rgba(255,255,255,.85);
    font-weight:700;
    font-size:.85rem;
  }

  .li-nav-link:hover{color:#fff}

  .li-navbar-actions .li-btn-outline{
    color:#fff;
    border-color:rgba(255,255,255,.35);
  }

  .li-navbar-actions .li-btn-outline:hover{
    background:rgba(255,255,255,.12);
  }

  .li-navbar-actions .li-btn-gold{
    background:linear-gradient(135deg,#C9A43B,#B8912A);
    color:#050505;
    font-weight:800;
  }

  .li-utility-bar{background:#050505}

  .li-utility-links a{
    color:rgba(255,255,255,.7);
    font-size:.78rem;
    font-weight:600;
  }

  .li-utility-links a:hover{color:#fff}

  .li-utility-contact{
    color:rgba(255,255,255,.5);
    font-size:.78rem;
  }

  .li-utility-contact i{color:#C9A43B}

  .li-search-toggle{color:rgba(255,255,255,.8)}
  .li-search-toggle:hover{color:#fff}
}

/* ----------------------------------------------------------
   SECTION 19: DESKTOP HERO — Hide mobile elements
   ---------------------------------------------------------- */
@media(min-width:768px){
  body.page-home .af-mob-seg,
  body.page-home .af-mob-header,
  body.page-home .af-mob-hero-img-wrap,
  body.page-home .af-mob-hero-content,
  body.page-home .af-mob-section,
  body.page-home .af-mob-quickbar,
  body.page-home .af-mob-promo,
  body.page-home .af-mob-premier,
  body.page-home .af-mob-app-banner,
  body.page-home .af-mob-footer{
    display:none !important;
  }
}

/* ----------------------------------------------------------
   SECTION 20: DESKTOP SECTIONS
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-section{
    padding:3rem 0;
    width:100%;
  }

  .li-section--alt{background:#F5F7F6}

  .li-section-inner{
    max-width:1280px;
    margin:0 auto;
    padding:0 1.5rem;
  }

  .li-section-header{
    max-width:640px;
    margin-bottom:2rem;
  }

  .li-kicker{
    color:#007A4D;
    font-weight:800;
    letter-spacing:.08em;
  }

  .li-section-header h2{
    font-size:2rem;
    font-weight:900;
    color:#111;
    letter-spacing:-.02em;
  }

  .li-section-header p{
    font-size:1rem;
    color:#5a6478;
  }
}

/* ----------------------------------------------------------
   SECTION 21: DESKTOP PRODUCT GRID
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
  }

  .li-product-card{
    background:#fff;
    border-radius:16px;
    padding:1.5rem;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
    border:1px solid #DDE5E1;
    transition:transform .2s,box-shadow .2s;
  }

  .li-product-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 32px rgba(0,0,0,.08);
  }

  .li-product-card-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
  }

  .li-product-card-icon--green{
    background:rgba(0,122,77,.08);
    color:#007A4D;
  }

  .li-product-card-icon--navy{
    background:rgba(10,26,58,.08);
    color:#0A1A3A;
  }

  .li-product-card-icon--teal{
    background:rgba(15,106,115,.08);
    color:#0F6A73;
  }

  .li-product-card-icon--blue{
    background:rgba(26,91,200,.08);
    color:#1A5BC8;
  }

  .li-product-card-icon--gold{
    background:rgba(201,164,59,.08);
    color:#C9A43B;
  }

  .li-product-card h3{
    font-size:1.05rem;
    font-weight:800;
    color:#111;
  }

  .li-product-card p{
    font-size:.85rem;
    color:#5a6478;
    line-height:1.45;
  }

  .li-product-card-arrow{
    font-size:.82rem;
    font-weight:700;
    color:#007A4D;
  }
}

/* ----------------------------------------------------------
   SECTION 22: DESKTOP STATS
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-stat-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
  }

  .li-stat-card{
    background:#fff;
    border-radius:16px;
    padding:1.5rem;
    text-align:center;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
  }

  .li-stat-card i{
    font-size:1.5rem;
    color:#007A4D;
    margin-bottom:.5rem;
  }

  .li-stat-card strong{
    font-size:1.75rem;
    font-weight:950;
    color:#111;
    display:block;
  }

  .li-stat-card span{
    font-size:.85rem;
    color:#5a6478;
  }
}

/* ----------------------------------------------------------
   SECTION 23: DESKTOP TRUST STRIP
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-trust-strip{
    background:#F5F7F6;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    padding:1rem 0;
  }

  .li-trust-inner{
    max-width:1280px;
    margin:0 auto;
    padding:0 1.5rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:.5rem;
  }

  .li-trust-item{
    display:flex;
    align-items:center;
    gap:.4rem;
    font-size:.8rem;
    font-weight:600;
    color:#5a6478;
  }

  .li-trust-item i{
    color:#007A4D;
    font-size:.9rem;
  }
}

/* ----------------------------------------------------------
   SECTION 24: DESKTOP HELP/SUPPORT GRID
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-help-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.25rem;
  }

  .li-help-card{
    background:#fff;
    border-radius:16px;
    padding:1.25rem;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
    border:1px solid #DDE5E1;
    transition:transform .2s;
  }

  .li-help-card:hover{transform:translateY(-2px)}

  .li-help-card i{
    font-size:1.3rem;
    color:#007A4D;
    margin-bottom:.5rem;
  }

  .li-help-card h3{
    font-size:.9rem;
    font-weight:800;
    color:#111;
  }

  .li-help-card p{
    font-size:.78rem;
    color:#5a6478;
    line-height:1.4;
  }
}

/* ----------------------------------------------------------
   SECTION 25: DESKTOP NEWS GRID
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-news-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.25rem;
  }

  .li-news-card{
    background:#fff;
    border-radius:16px;
    padding:1.25rem;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
    border:1px solid #DDE5E1;
  }

  .li-news-card-tag{
    font-size:.65rem;
    font-weight:800;
    color:#007A4D;
    background:rgba(0,122,77,.08);
    padding:3px 8px;
    border-radius:4px;
    text-transform:uppercase;
  }

  .li-news-card h3{
    font-size:.9rem;
    font-weight:800;
    color:#111;
  }

  .li-news-card p{
    font-size:.78rem;
    color:#5a6478;
    line-height:1.4;
  }

  .li-news-card-link{
    font-size:.78rem;
    font-weight:700;
    color:#007A4D;
  }
}

/* ----------------------------------------------------------
   SECTION 26: DESKTOP DIGITAL GRID
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-digital-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
  }

  .li-digital-card{
    display:flex;
    gap:1rem;
    align-items:flex-start;
    background:#fff;
    border-radius:16px;
    padding:1.25rem;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
    border:1px solid #DDE5E1;
    transition:transform .2s;
  }

  .li-digital-card:hover{transform:translateY(-2px)}

  .li-digital-card i{
    font-size:1.5rem;
    color:#007A4D;
    flex-shrink:0;
  }

  .li-digital-card h3{
    font-size:.95rem;
    font-weight:800;
    color:#111;
  }

  .li-digital-card p{
    font-size:.8rem;
    color:#5a6478;
    line-height:1.4;
  }
}

/* ----------------------------------------------------------
   SECTION 27: DESKTOP LOAN GRID
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-loan-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.25rem;
  }
}

/* ----------------------------------------------------------
   SECTION 28: DESKTOP FOOTER
   ---------------------------------------------------------- */
@media(min-width:768px){
  .li-footer{
    background:#050505;
    width:100%;
  }

  .li-footer-main{padding:2.5rem 0 1.5rem}

  .li-footer-inner{
    max-width:1280px;
    margin:0 auto;
    padding:0 1.5rem;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1fr;
    gap:2rem;
  }

  .li-footer-brand p{
    font-size:.85rem;
    color:rgba(255,255,255,.5);
    line-height:1.5;
    margin-top:.75rem;
  }

  .li-footer-brand-name{
    color:#fff;
    font-weight:900;
    font-size:1.1rem;
  }

  .li-footer-column h4{
    color:rgba(255,255,255,.45);
    font-size:.78rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:.75rem;
  }

  .li-footer-column ul{list-style:none;padding:0;margin:0}
  .li-footer-column ul li{margin-bottom:.45rem}

  .li-footer-column ul li a{
    color:rgba(255,255,255,.65);
    font-size:.82rem;
    font-weight:500;
    text-decoration:none;
    transition:color .2s;
  }

  .li-footer-column ul li a:hover{color:#fff}

  .li-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:1rem 1.5rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:.5rem;
    max-width:1280px;
    margin:0 auto;
  }

  .li-footer-bottom span{
    font-size:.72rem;
    color:rgba(255,255,255,.35);
  }

  .li-footer-bottom-links{
    display:flex;
    gap:1rem;
    list-style:none;
    padding:0;
    margin:0;
  }

  .li-footer-bottom-links li a{
    font-size:.72rem;
    color:rgba(255,255,255,.45);
    text-decoration:none;
  }

  .li-footer-bottom-links li a:hover{color:#14B87A}

  .li-footer-cta{
    background:linear-gradient(135deg,#007A4D,#005C3A);
    padding:2.5rem 1.5rem;
  }

  .li-footer-cta-inner{
    max-width:1280px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:2rem;
  }

  .li-footer-cta-copy h2{
    font-size:1.5rem;
    font-weight:900;
    color:#fff;
  }

  .li-footer-cta-copy p{
    font-size:.9rem;
    color:rgba(255,255,255,.65);
  }

  .li-footer-cta-actions{
    display:flex;
    gap:.75rem;
    flex-shrink:0;
  }

  .li-btn-white{
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    padding:.7rem 1.3rem;
    background:#fff;
    color:#007A4D;
    border-radius:10px;
    font-weight:800;
    font-size:.85rem;
    text-decoration:none;
    transition:transform .15s;
  }

  .li-btn-white:hover{transform:translateY(-1px)}

  .li-footer-cta .li-btn-outline{
    color:#fff;
    border-color:rgba(255,255,255,.35);
  }
}

/* ----------------------------------------------------------
   SECTION 29: TABLET TRANSITION (768–991px)
   ---------------------------------------------------------- */
@media(min-width:768px) and (max-width:991.98px){
  .li-product-grid{grid-template-columns:repeat(2,1fr)}
  .li-help-grid{grid-template-columns:repeat(2,1fr)}
  .li-stat-grid{grid-template-columns:repeat(2,1fr)}
  .li-footer-inner{grid-template-columns:1fr 1fr 1fr}
}

/* ----------------------------------------------------------
   SECTION 30: GLOBAL SECTION PAGE RESET (mobile)
   ---------------------------------------------------------- */
@media(max-width:767.98px){
  body:not(.page-home) .container.py-3.py-md-4{
    padding:16px;
    max-width:100%;
  }

  .aidf-bottom-nav{z-index:1600}
  .app-mobile-topbar{display:none !important}
}
/* AIDF homepage rebuild from mobile/desktop reference comps */
.aidf-home-v3 { background:#fff; font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; color:#111820; }
.aidf-home-v3 .aidf-full-bleed-main { padding:0; }
.ah-page { --green:#00895f; --deep:#006b4a; --mint:#d8f7e7; --line:#d9e0df; max-width:1920px; margin:0 auto; background:#fff; }
.ah-page a { text-decoration:none; }
.ah-segments { height:58px; display:grid; grid-template-columns:repeat(4,1fr); background:#030504; max-width:100%; }
.ah-segments a { display:flex; align-items:center; padding:0 38px; color:#fff; font-size:15px; font-weight:800; border-right:1px solid #1b1d1c; }
.ah-segments a.is-active { background:#00895f; }
.ah-header { height:84px; display:grid; grid-template-columns:300px 160px 1fr 150px; gap:26px; align-items:center; padding:0 72px; background:linear-gradient(90deg,#00a978,#05b97c); color:#06100e; }
.ah-brand { display:flex; align-items:center; gap:12px; color:#06100e; min-width:0; }
.ah-mark { width:48px; height:48px; display:grid; place-items:center; color:#e5ad3f; font-size:34px; transform:rotate(45deg); }
.ah-mark i { transform:rotate(-45deg); }
.ah-logo-img { width:auto; height:54px; max-width:98px; object-fit:contain; display:block; }
.ah-brand--with-logo > span:not(.ah-mark) { display:none; }
.ah-brand strong { display:block; font-size:31px; line-height:.9; font-weight:950; letter-spacing:0; }
.ah-brand small { display:block; font-size:9px; font-weight:900; margin-top:5px; }
.ah-nav-action { border:0; background:transparent; color:#06100e; display:inline-flex; align-items:center; justify-content:center; gap:12px; font-weight:900; font-size:16px; }
.ah-nav-action i { font-size:26px; }
.ah-search { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:12px; }
.ah-search label { font-weight:900; font-size:15px; }
.ah-search input { width:100%; height:58px; border:0; border-radius:6px; background:#fff; padding:0 18px; box-shadow:0 2px 12px rgba(0,0,0,.13); font-weight:600; }
.ah-search button { width:42px; height:42px; border:0; background:#fff; margin-left:-58px; z-index:1; font-size:23px; }
.ah-hero { position:relative; min-height:570px; overflow:hidden; background:#061c18; }
.ah-hero picture,.ah-hero img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ah-hero::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.58) 0%,rgba(0,0,0,.24) 42%,rgba(0,0,0,.04)); }
.ah-hero-copy { position:relative; z-index:1; padding:112px 0 0 72px; color:#fff; width:min(680px,48vw); }
.ah-hero h1 { margin:0; font-size:59px; line-height:.96; font-weight:950; letter-spacing:0; }
.ah-hero p { margin:26px 0 31px; font-size:18px; line-height:1.45; font-weight:800; }
.ah-hero-copy a { display:inline-flex; align-items:center; gap:20px; min-width:390px; height:68px; justify-content:center; border-radius:6px; background:#fff; color:#111; font-weight:950; box-shadow:0 8px 18px rgba(0,0,0,.15); }
.ah-dots { display:none; }
.ah-quick { margin:-98px auto 0; position:relative; z-index:3; width:calc(100% - 180px); display:grid; grid-template-columns:repeat(4,1fr); border-radius:8px 8px 0 0; overflow:hidden; box-shadow:0 10px 20px rgba(0,0,0,.2); }
.ah-quick a { height:98px; display:grid; grid-template-columns:44px 1fr 20px; gap:17px; align-items:center; padding:0 30px; color:#fff; background:linear-gradient(135deg,#009568,#006b4a); border-right:1px solid rgba(255,255,255,.28); }
.ah-quick i:first-child { width:34px; height:34px; display:grid; place-items:center; border:2px solid rgba(255,255,255,.75); border-radius:4px; font-size:20px; }
.ah-quick strong { font-size:18px; line-height:1.15; }
.ah-app-promo,.ah-support,.ah-score,.ah-online,.ah-survey,.ah-trust,.ah-bottom-app { width:calc(100% - 200px); margin-left:auto; margin-right:auto; }
.ah-app-promo { margin-top:38px; min-height:432px; border-radius:18px; background:var(--promo-img) center/cover no-repeat; display:flex; align-items:center; padding:70px 110px; box-shadow:0 7px 24px rgba(0,0,0,.08); }
.ah-app-promo div { max-width:420px; }
.ah-app-promo small { font-weight:950; font-size:13px; }
.ah-app-promo h2 { margin:12px 0 18px; font-size:38px; line-height:1.05; font-weight:950; letter-spacing:0; }
.ah-app-promo p { font-size:16px; line-height:1.35; font-weight:600; }
.ah-btn { display:flex; width:300px; height:48px; align-items:center; justify-content:center; margin-top:15px; border-radius:6px; font-weight:950; font-size:14px; }
.ah-btn-green { background:#02a85f; color:#fff; }
.ah-btn-outline { border:2px solid #899391; color:#111; background:#fff; }
.ah-products { width:calc(100% - 200px); margin:26px auto 0; }
.ah-title-row { display:flex; justify-content:center; align-items:center; position:relative; margin-bottom:24px; }
.ah-title-row h2,.ah-support>h2,.ah-online>h2,.ah-survey>h2 { margin:0; text-align:center; font-size:35px; font-weight:950; letter-spacing:0; }
.ah-title-row h2::after,.ah-support>h2::after,.ah-online>h2::after { content:""; display:block; width:60px; height:3px; background:var(--green); margin:12px auto 0; }
.ah-title-row>a { position:absolute; right:0; color:var(--deep); font-weight:800; }
.ah-product-row { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:28px; }
.ah-product { min-height:410px; border:1px solid #d5dddd; border-radius:8px; background:#fff; overflow:hidden; box-shadow:0 8px 20px rgba(2,25,20,.08); display:flex; flex-direction:column; }
.ah-product-img { height:150px; background-size:cover; background-position:center; position:relative; }
.ah-product-img i { position:absolute; left:20px; bottom:-25px; width:52px; height:52px; display:grid; place-items:center; border-radius:50%; background:#009b68; border:5px solid #e6fff3; color:#fff; font-size:24px; }
.ah-product h3 { margin:40px 20px 10px; font-size:22px; font-weight:950; }
.ah-product p { margin:0 20px; font-size:14px; line-height:1.35; font-weight:600; flex:1; color:#26312f; }
.ah-product a { margin:20px; min-height:42px; border:1px solid #036447; border-radius:5px; display:flex; align-items:center; justify-content:center; gap:10px; color:#111; font-weight:900; font-size:13px; }
.ah-premier { width:calc(100% - 200px); min-height:170px; margin:34px auto 0; border-radius:8px; color:#fff; overflow:hidden; background:linear-gradient(90deg,rgba(0,0,0,.25),rgba(0,0,0,.85) 47%,rgba(0,34,26,.95)),var(--premium-img) left center/cover no-repeat; display:grid; grid-template-columns:260px 1fr; align-items:center; padding:0 42px; }
.ah-premier-badge { width:110px; height:110px; display:grid; place-items:center; text-align:center; border:2px solid #d4a64a; border-radius:6px; color:#d4a64a; text-transform:uppercase; font-weight:950; line-height:1.05; background:#06140f; }
.ah-premier h2 { margin:0; font-size:30px; font-weight:950; }
.ah-premier p { margin:7px 0 14px; font-weight:700; }
.ah-premier a { display:flex; width:330px; height:38px; align-items:center; justify-content:center; background:#fff; color:#111; border-radius:5px; font-weight:900; }
.ah-support { margin-top:28px; padding:0 98px 42px; border-radius:12px; background:linear-gradient(180deg,#f7fbfb,#fff); }
.ah-support-lead { height:88px; margin-top:26px; display:grid; grid-template-columns:74px 1fr auto; align-items:center; padding:0 40px; border-radius:8px; background:linear-gradient(90deg,#b7f1cf,#97e7bc); color:#0d231a; }
.ah-support-lead i:first-child { font-size:42px; color:#047a53; }
.ah-support-lead strong { display:block; font-size:18px; font-weight:950; }
.ah-support-lead small { display:block; font-weight:700; }
.ah-support-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:18px; }
.ah-support-grid a { min-height:205px; background:#fff; border:1px solid #edf1f1; border-radius:8px; color:#111; padding:27px; box-shadow:0 6px 16px rgba(0,0,0,.05); }
.ah-support-grid i { color:#00895f; font-size:38px; }
.ah-support-grid strong { display:block; margin-top:18px; font-size:17px; font-weight:950; }
.ah-support-grid span { display:block; margin-top:8px; font-size:13px; font-weight:600; color:#2c3836; }
.ah-support-grid em { display:block; margin-top:20px; font-style:normal; font-size:13px; color:#111; font-weight:950; }
.ah-score { min-height:134px; border:1px solid #dde4e3; border-radius:10px; overflow:hidden; display:grid; grid-template-columns:1fr 440px; align-items:center; }
.ah-score div { padding:24px 0 24px 300px; }
.ah-score h2 { margin:0; font-size:25px; font-weight:950; }
.ah-score p { margin:8px 0 13px; font-weight:600; font-size:14px; }
.ah-score a { display:flex; width:285px; height:38px; justify-content:center; align-items:center; gap:10px; background:#001e14; color:#fff; border-radius:5px; font-weight:900; font-size:13px; }
.ah-score img { width:100%; height:134px; object-fit:cover; }
.ah-online { margin-top:26px; text-align:center; }
.ah-online>p { margin:5px 0 22px; font-weight:600; }
.ah-online-grid { display:grid; grid-template-columns:2fr 1fr; gap:18px; }
.ah-mobile-app,.ah-login-card { min-height:164px; border-radius:8px; text-align:left; color:#fff; }
.ah-mobile-app { display:grid; grid-template-columns:110px 95px 1fr; gap:20px; align-items:center; padding:20px 28px; background:linear-gradient(135deg,#00895f,#003f2e); }
.ah-qr { width:92px; height:92px; background:repeating-linear-gradient(90deg,#fff 0 7px,#111 7px 13px,#fff 13px 18px),repeating-linear-gradient(0deg,transparent 0 6px,rgba(0,0,0,.28) 6px 11px); border:8px solid #fff; }
.ah-mobile-app>i { font-size:74px; color:#9cffb7; }
.ah-mobile-app strong,.ah-login-card strong { display:block; font-size:20px; font-weight:950; }
.ah-mobile-app small,.ah-login-card small { display:block; line-height:1.55; font-weight:700; }
.ah-login-card { padding:30px; background:linear-gradient(135deg,#d9fce7,#98e7bd); color:#0a1d16; display:grid; align-content:center; gap:6px; }
.ah-login-card>i { font-size:34px; }
.ah-login-card span { display:flex; height:36px; align-items:center; justify-content:center; border:1px solid #006b4a; border-radius:5px; color:#062119; font-weight:900; margin-top:8px; }
.ah-survey { margin-top:26px; }
.ah-survey-grid { margin-top:20px; display:grid; grid-template-columns:1fr 1.25fr 1fr; gap:28px; border-top:1px solid #dde5e4; padding-top:24px; }
.ah-survey article { padding:0 28px; border-right:1px solid #dde5e4; }
.ah-survey article:last-child { border-right:0; }
.ah-survey h3 { margin:0 0 12px; font-size:19px; font-weight:950; }
.ah-survey p { font-size:14px; line-height:1.45; font-weight:600; }
.ah-survey a { color:#ce351f; font-weight:950; }
.ah-ranking div { display:grid; grid-template-columns:116px 1fr 42px; gap:12px; align-items:center; margin:9px 0; font-weight:900; }
.ah-ranking b { height:16px; background:#006b4a; border-radius:999px; }
.ah-ranking em { font-style:normal; color:#006b4a; }
.ah-trust { margin-top:28px; display:grid; grid-template-columns:repeat(4,1fr); border:1px solid #dce4e3; border-radius:10px; overflow:hidden; }
.ah-trust div { min-height:78px; display:grid; grid-template-columns:40px auto; grid-template-rows:auto auto; align-content:center; column-gap:10px; padding:0 28px; border-right:1px solid #e4e9e8; }
.ah-trust i { grid-row:1/3; color:#00895f; font-size:31px; }
.ah-trust strong { font-size:24px; line-height:1; }
.ah-trust span { font-size:11px; font-weight:800; }
.ah-bottom-app { margin-top:32px; height:120px; border-radius:8px; color:#fff; overflow:hidden; background:linear-gradient(90deg,#006b4a 0%,#006b4a 35%,rgba(0,107,74,.72)),var(--promo-img) right center/auto 210% no-repeat; display:flex; align-items:center; padding-left:170px; }
.ah-bottom-app h2 { margin:0; font-size:28px; font-weight:950; }
.ah-bottom-app p { margin:4px 0 12px; font-weight:800; }
.ah-bottom-app a { display:flex; width:250px; height:38px; align-items:center; justify-content:center; gap:10px; border-radius:5px; background:#fff; color:#111; font-weight:900; }
.ah-footer { margin-top:16px; background:#030504; color:#fff; padding:34px 102px 20px; }
.ah-footer-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:45px; }
.ah-footer h3 { font-size:14px; margin:0 0 12px; font-weight:950; }
.ah-footer a { display:block; color:#d9d9d9; font-size:12px; line-height:1.65; }
.ah-social { display:flex; gap:16px; margin-top:20px; }
.ah-social i { width:32px; height:32px; display:grid; place-items:center; border:1px solid #fff; border-radius:50%; }
.ah-footer-bottom { border-top:1px solid #222; margin-top:32px; padding-top:18px; display:flex; justify-content:space-between; font-size:12px; }
.ah-footer-bottom a { color:#fff; font-weight:900; }
@media (max-width: 767.98px) {
    html, body.aidf-home-v3, body.aidf-home-v3 .aidf-full-bleed-main { width:100%; max-width:100%; margin:0; padding:0; overflow-x:hidden; }
    .ah-page { width:100%; max-width:none; margin:0; box-shadow:none; overflow:hidden; }
    .ah-segments { height:28px; }
    .ah-segments a { padding:0; justify-content:center; font-size:8px; }
    .ah-header { height:42px; grid-template-columns:1fr repeat(3,54px); gap:0; padding:0 12px; }
    .ah-brand { gap:6px; }
    .ah-mark { width:26px; height:26px; font-size:18px; }
    .ah-logo-img { height:25px; max-width:42px; }
    .ah-brand strong { font-size:13px; color:#fff; }
    .ah-brand small,.ah-search label,.ah-search input { display:none; }
    .ah-search { display:flex; justify-content:center; }
    .ah-search button { margin:0; width:auto; height:auto; background:transparent; color:#fff; font-size:16px; }
    .ah-nav-action { color:#fff; display:grid; gap:1px; font-size:7px; }
    .ah-nav-action i { font-size:15px; }
    .ah-hero { min-height:277px; }
    .ah-hero picture,.ah-hero img { height:130px; bottom:auto; object-position:center; }
    .ah-hero::after { top:130px; background:linear-gradient(135deg,#00895f,#006b4a); }
    .ah-hero-copy { padding:143px 18px 0; width:auto; }
    .ah-hero h1 { font-size:20px; width:14ch; line-height:1.03; }
    .ah-hero p { margin:8px 0 12px; font-size:10px; width:31ch; line-height:1.35; }
    .ah-hero-copy a { min-width:145px; width:145px; height:27px; border-radius:5px; font-size:8px; gap:8px; }
    .ah-dots { display:flex; position:absolute; z-index:2; left:174px; bottom:12px; gap:9px; }
    .ah-dots span { width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.38); }
    .ah-dots span:first-child { background:#50e181; }
    .ah-quick { margin:0; width:100%; display:block; border-radius:0; box-shadow:none; }
    .ah-quick a { height:33px; grid-template-columns:30px 1fr 18px; padding:0 14px; background:#fff; color:#111; border-bottom:1px solid #e1e1e1; }
    .ah-quick i:first-child { width:auto; height:auto; border:0; color:#00895f; font-size:16px; }
    .ah-quick strong { font-size:9px; }
    .ah-app-promo,.ah-products,.ah-premier,.ah-support,.ah-score,.ah-online,.ah-survey,.ah-trust,.ah-bottom-app { width:calc(100% - 24px); }
    .ah-app-promo { min-height:197px; margin-top:12px; padding:20px 27px; border-radius:8px; background-position:center; background-size:cover; align-items:center; }
    .ah-app-promo div { max-width:145px; }
    .ah-app-promo small { font-size:6px; }
    .ah-app-promo h2 { font-size:21px; margin:5px 0 8px; }
    .ah-app-promo p { font-size:7px; }
    .ah-btn { width:125px; height:24px; font-size:6px; margin-top:8px; }
    .ah-title-row { margin-bottom:8px; }
    .ah-title-row h2,.ah-support>h2,.ah-online>h2,.ah-survey>h2 { font-size:13px; }
    .ah-title-row h2::after,.ah-support>h2::after,.ah-online>h2::after { display:none; }
    .ah-title-row>a { font-size:6px; }
    .ah-product-row { display:flex; gap:10px; overflow-x:auto; padding:0 4px 10px; scrollbar-width:thin; }
    .ah-product { min-width:105px; min-height:173px; border-radius:5px; }
    .ah-product-img { height:65px; }
    .ah-product-img i { width:27px; height:27px; left:8px; bottom:-13px; border-width:3px; font-size:12px; }
    .ah-product h3 { margin:22px 8px 5px; font-size:9px; }
    .ah-product p { margin:0 8px; font-size:6px; }
    .ah-product a { border:0; justify-content:space-between; margin:8px; min-height:auto; font-size:6px; }
    .ah-premier { min-height:96px; margin-top:5px; grid-template-columns:90px 1fr; padding:0 14px; border-radius:5px; }
    .ah-premier-badge { width:46px; height:46px; font-size:8px; }
    .ah-premier h2 { font-size:13px; }
    .ah-premier p { font-size:6px; margin:4px 0 9px; }
    .ah-premier a { width:128px; height:20px; font-size:6px; }
    .ah-support { margin-top:10px; padding:0; background:#fff; }
    .ah-support-lead { height:37px; margin-top:8px; grid-template-columns:35px 1fr 12px; padding:0 10px; border-radius:5px; background:linear-gradient(90deg,#009568,#00744f); color:#fff; }
    .ah-support-lead i:first-child { font-size:19px; color:#fff; }
    .ah-support-lead strong { font-size:9px; }
    .ah-support-lead small { font-size:6px; }
    .ah-support-grid { display:block; margin-top:0; }
    .ah-support-grid a { min-height:40px; border-radius:0; box-shadow:none; display:grid; grid-template-columns:36px 1fr 14px; padding:7px 10px; border-bottom:1px solid #e1e1e1; }
    .ah-support-grid i { font-size:21px; grid-row:1/3; }
    .ah-support-grid strong { margin:0; font-size:8px; grid-column:2; }
    .ah-support-grid span { margin:2px 0 0; font-size:6px; grid-column:2; max-width:210px; }
    .ah-support-grid em { display:none; }
    .ah-score { min-height:80px; grid-template-columns:1fr 158px; margin-top:12px; border-radius:6px; }
    .ah-score div { padding:12px 0 12px 18px; }
    .ah-score h2 { font-size:11px; }
    .ah-score p { font-size:6px; margin:5px 0; }
    .ah-score a { width:118px; height:23px; font-size:6px; }
    .ah-score img { height:80px; }
    .ah-online { margin-top:10px; }
    .ah-online>p { font-size:6px; margin:2px 0 8px; }
    .ah-online-grid { grid-template-columns:1fr; gap:6px; }
    .ah-mobile-app,.ah-login-card { min-height:73px; border-radius:5px; }
    .ah-mobile-app { grid-template-columns:58px 45px 1fr; gap:8px; padding:8px 10px; }
    .ah-qr { width:46px; height:46px; border-width:4px; }
    .ah-mobile-app>i { font-size:42px; }
    .ah-mobile-app strong,.ah-login-card strong { font-size:9px; }
    .ah-mobile-app small,.ah-login-card small { font-size:6px; }
    .ah-login-card { padding:12px; min-height:80px; }
    .ah-login-card span { height:18px; font-size:6px; }
    .ah-survey { margin-top:10px; }
    .ah-survey-grid { display:block; margin-top:8px; padding-top:8px; border:1px solid #e0e6e5; border-radius:6px; }
    .ah-survey article { border-right:0; padding:10px 14px; border-bottom:1px solid #e8eeee; }
    .ah-survey h3 { font-size:9px; margin-bottom:5px; }
    .ah-survey p,.ah-survey a { font-size:6px; }
    .ah-ranking div { grid-template-columns:65px 1fr 26px; font-size:6px; gap:6px; }
    .ah-ranking b { height:8px; }
    .ah-trust { margin-top:10px; grid-template-columns:repeat(4,1fr); }
    .ah-trust div { min-height:44px; padding:0 8px; grid-template-columns:18px auto; column-gap:4px; }
    .ah-trust i { font-size:16px; }
    .ah-trust strong { font-size:12px; }
    .ah-trust span { font-size:4px; }
    .ah-bottom-app { height:94px; margin-top:10px; padding-left:17px; background-size:auto 180%; }
    .ah-bottom-app h2 { font-size:12px; }
    .ah-bottom-app p { font-size:7px; }
    .ah-bottom-app a { width:104px; height:25px; font-size:6px; }
    .ah-footer { margin-top:0; padding:12px 18px 18px; }
    .ah-footer-grid { display:block; }
    .ah-footer-grid>div { border-bottom:1px solid #202020; padding:6px 0; }
    .ah-footer h3 { font-size:7px; margin:0; display:flex; justify-content:space-between; }
    .ah-footer h3::after { content:"⌄"; }
    .ah-footer a { display:none; }
    .ah-social { display:flex; gap:20px; }
    .ah-social i { width:auto; height:auto; border:0; font-size:11px; }
    .ah-footer-bottom { margin-top:10px; padding-top:10px; font-size:6px; }
}

.ah-inner-page { background:#fff; }
.ah-inner-hero { min-height:340px; display:grid; align-items:center; padding:64px 88px; color:#fff; background:linear-gradient(90deg,rgba(0,45,32,.9),rgba(0,107,74,.72)),url("../images/aidf-home-hero-branch.png") center/cover no-repeat; }
.ah-inner-hero nav { display:flex; gap:9px; font-size:13px; font-weight:800; margin-bottom:18px; color:rgba(255,255,255,.78); }
.ah-inner-hero nav a { color:#fff; }
.ah-inner-hero small { display:block; text-transform:uppercase; font-weight:950; color:#aaf0ce; margin-bottom:10px; }
.ah-inner-hero h1 { max-width:760px; margin:0; font-size:52px; line-height:1; font-weight:950; letter-spacing:0; }
.ah-inner-hero p { max-width:720px; margin:18px 0 0; font-size:18px; line-height:1.5; font-weight:700; }
.ah-inner-content { width:calc(100% - 200px); margin:42px auto 58px; }
.ah-inner-content .li-section, .ah-inner-content .li-section--alt { margin-top:0; padding:42px 0; background:#fff; }
.ah-inner-content .li-section-inner { max-width:100%; }
.ah-inner-content .li-feature-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.ah-inner-content .li-feature-card { background:#fff; border:1px solid #dbe5e2; border-radius:8px; padding:28px; box-shadow:0 10px 26px rgba(0,0,0,.06); }
.ah-inner-content .li-feature-card-icon, .ah-inner-content .li-feature-card>i { width:48px; height:48px; display:grid; place-items:center; border-radius:50%; background:#e1f8ed; color:#00895f; font-size:24px; margin-bottom:16px; }
.ah-inner-content .li-feature-card h3 { font-size:20px; font-weight:950; color:#082e23; }
.ah-inner-content .li-feature-card p { color:#263936; font-weight:600; line-height:1.55; }
.ah-inner-content .li-stat-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.ah-inner-content .li-stat-card { border:1px solid #dbe5e2; border-radius:8px; background:#fff; padding:22px; box-shadow:0 8px 20px rgba(0,0,0,.04); }
.ah-inner-content .li-faq-item { border:1px solid #dbe5e2; border-radius:8px; margin-bottom:10px; background:#fff; overflow:hidden; }
.ah-inner-content .li-faq-question { width:100%; border:0; background:#fff; padding:18px 20px; display:flex; justify-content:space-between; font-weight:950; color:#082e23; }
.ah-inner-content .li-faq-answer { display:none; padding:0 20px 18px; color:#263936; font-weight:600; }
.ah-inner-content .li-faq-item.is-open .li-faq-answer { display:block; }
.ah-inner-content .li-faq-question i { transition:transform .18s ease; }
.ah-inner-content .li-faq-item.is-open .li-faq-question i { transform:rotate(180deg); }
.ah-inner-content .li-cta-banner { display:flex; align-items:center; justify-content:space-between; gap:24px; border-radius:8px; background:linear-gradient(135deg,#00895f,#003f2e); color:#fff; padding:34px; }
.ah-inner-content .li-cta-banner h2 { margin:0; font-weight:950; }
.ah-inner-content .li-btn, .ah-inner-content .li-btn-gold, .ah-inner-content .li-btn-outline { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:42px; padding:0 18px; border-radius:5px; font-weight:900; text-decoration:none; }
.ah-inner-content .li-btn-gold { background:#fff; color:#082e23; }
.ah-inner-content .li-btn-outline { border:1px solid rgba(255,255,255,.65); color:#fff; }
.aidf-home-v3 .container.py-3.py-md-4 { max-width:1180px; padding-top:22px !important; padding-bottom:34px !important; }
.aidf-home-v3 .app-mobile-page { width:100%; }
.aidf-home-v3 .app-page-hero,
.aidf-home-v3 .li-page-hero {
    border-radius:8px;
    background:linear-gradient(90deg,rgba(0,45,32,.94),rgba(0,107,74,.78)),url("../images/aidf-home-hero-branch.png") center/cover no-repeat;
    color:#fff;
    overflow:hidden;
}
.aidf-home-v3 .app-page-hero-inner,
.aidf-home-v3 .li-page-hero-inner { padding:54px; max-width:920px; }
.aidf-home-v3 .app-page-hero h1,
.aidf-home-v3 .li-page-hero h1 { font-size:clamp(32px,5vw,58px); line-height:1; font-weight:950; letter-spacing:0; }
.aidf-home-v3 .app-page-hero p,
.aidf-home-v3 .li-page-hero p { font-size:17px; font-weight:700; line-height:1.5; color:rgba(255,255,255,.9); }
.aidf-home-v3 .app-section,
.aidf-home-v3 .li-section,
.aidf-home-v3 .li-section--alt { margin-top:28px; }
.aidf-home-v3 .app-section-inner,
.aidf-home-v3 .li-section-inner { max-width:1180px; margin:0 auto; }
.aidf-home-v3 .app-feature-grid,
.aidf-home-v3 .li-feature-grid,
.aidf-home-v3 .app-product-grid,
.aidf-home-v3 .li-product-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.aidf-home-v3 .li-product-grid > .li-feature-grid,
.aidf-home-v3 .app-product-grid > .app-feature-grid {
    grid-column:1 / -1;
    width:100%;
}
.aidf-home-v3 .app-feature-card,
.aidf-home-v3 .li-feature-card,
.aidf-home-v3 .app-product-card,
.aidf-home-v3 .li-product-card,
.aidf-home-v3 .app-stat-card,
.aidf-home-v3 .li-stat-card {
    border:1px solid #dbe5e2;
    border-radius:8px;
    background:#fff;
    box-shadow:0 14px 32px rgba(4,33,26,.08);
    padding:26px;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.aidf-home-v3 .app-feature-card:hover,
.aidf-home-v3 .li-feature-card:hover,
.aidf-home-v3 .app-product-card:hover,
.aidf-home-v3 .li-product-card:hover {
    transform:translateY(-3px);
    border-color:#91dac0;
    box-shadow:0 20px 42px rgba(4,33,26,.12);
}
.aidf-home-v3 .app-card-icon,
.aidf-home-v3 .li-feature-icon,
.aidf-home-v3 .li-product-card-icon {
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#e1f8ed;
    color:#00895f;
    font-size:25px;
    margin-bottom:16px;
}
.aidf-home-v3 .app-feature-card h3,
.aidf-home-v3 .li-feature-card h3,
.aidf-home-v3 .app-product-card h3,
.aidf-home-v3 .li-product-card h3 { color:#082e23; font-weight:950; font-size:20px; }
.aidf-home-v3 .app-stat-card strong,
.aidf-home-v3 .li-stat-card strong {
    display:block;
    color:#082e23;
    font-size:18px;
    line-height:1.2;
    font-weight:950;
}
.aidf-home-v3 .app-stat-card span,
.aidf-home-v3 .li-stat-card span { color:#66736f; font-size:12px; font-weight:800; }
.aidf-home-v3 .app-feature-card p,
.aidf-home-v3 .li-feature-card p,
.aidf-home-v3 .app-product-card p,
.aidf-home-v3 .li-product-card p { color:#263936; font-weight:600; line-height:1.55; }
.aidf-home-v3 .app-cta-banner,
.aidf-home-v3 .li-cta-banner {
    border-radius:8px;
    background:linear-gradient(135deg,#00895f,#003f2e);
    color:#fff;
    box-shadow:0 18px 38px rgba(0,63,46,.18);
}
@media (max-width:767.98px) {
    .ah-inner-hero { min-height:210px; padding:28px 18px; }
    .ah-inner-hero nav { font-size:10px; margin-bottom:12px; }
    .ah-inner-hero h1 { font-size:28px; }
    .ah-inner-hero p { font-size:12px; }
    .ah-inner-content { width:calc(100% - 20px); margin:18px auto 26px; }
    .ah-inner-content .li-section, .ah-inner-content .li-section--alt { padding:20px 0; }
    .ah-inner-content .li-section-header h2 { font-size:21px; }
    .ah-inner-content .li-section-header p { font-size:12px; }
    .ah-inner-content .li-feature-grid, .ah-inner-content .li-stat-grid { grid-template-columns:1fr; gap:10px; }
    .ah-inner-content .li-feature-card, .ah-inner-content .li-stat-card { padding:16px; }
    .ah-inner-content .li-cta-banner { display:block; padding:20px; }
    .ah-inner-content .li-cta-banner-actions { display:grid; gap:9px; margin-top:14px; }
    .aidf-home-v3 .container.py-3.py-md-4 { width:100%; max-width:100%; padding:0 10px 24px !important; }
    .aidf-home-v3 .app-page-hero,
    .aidf-home-v3 .li-page-hero { border-radius:0; margin-left:-10px; margin-right:-10px; }
    .aidf-home-v3 .app-page-hero-inner,
    .aidf-home-v3 .li-page-hero-inner { padding:28px 18px; }
    .aidf-home-v3 .app-feature-grid,
    .aidf-home-v3 .li-feature-grid,
    .aidf-home-v3 .app-product-grid,
    .aidf-home-v3 .li-product-grid,
    .aidf-home-v3 .app-stat-grid,
    .aidf-home-v3 .li-stat-grid { grid-template-columns:1fr; gap:10px; }
    .aidf-home-v3 .app-feature-card,
    .aidf-home-v3 .li-feature-card,
    .aidf-home-v3 .app-product-card,
    .aidf-home-v3 .li-product-card,
    .aidf-home-v3 .app-stat-card,
    .aidf-home-v3 .li-stat-card { padding:16px; }
}

.ac-hero,.ao-hero{min-height:320px;padding:54px 88px;color:#fff;background:linear-gradient(90deg,rgba(0,45,32,.94),rgba(0,137,95,.72)),url("../images/aidf-home-hero-branch.png") center/cover no-repeat;display:grid;grid-template-columns:1fr 330px;gap:32px;align-items:center}
.ac-hero nav,.ao-hero nav{display:flex;gap:9px;font-size:13px;font-weight:800;color:rgba(255,255,255,.72);margin-bottom:14px}.ac-hero nav a,.ao-hero nav a{color:#fff}
.ac-hero small,.ao-hero small,.ac-card-head small,.ao-card-head small{display:block;text-transform:uppercase;color:#aaf0ce;font-size:12px;font-weight:950;margin-bottom:6px}
.ac-hero h1,.ao-hero h1{max-width:760px;margin:0;font-size:clamp(34px,5vw,58px);line-height:1;font-weight:950;letter-spacing:0}
.ac-hero p,.ao-hero p{max-width:740px;margin:16px 0 0;font-size:17px;line-height:1.45;font-weight:700;color:rgba(255,255,255,.9)}
.ac-hero aside,.ao-hero aside{display:grid;gap:12px}.ac-hero aside span,.ao-hero aside span{border:1px solid rgba(255,255,255,.22);background:rgba(0,0,0,.2);border-radius:8px;padding:18px}.ac-hero aside i{font-size:25px;color:#aaf0ce}.ac-hero aside strong,.ao-hero aside strong{display:block;font-size:24px}.ac-hero aside em,.ao-hero aside em{font-style:normal;font-weight:700;color:rgba(255,255,255,.76)}
.ac-shell,.ao-shell{width:min(1180px,calc(100% - 96px));margin:34px auto 58px;display:grid;grid-template-columns:1fr 340px;gap:24px;align-items:start}.ao-shell{grid-template-columns:320px 1fr}
.ac-form-card,.ao-card,.ac-side-card,.ao-side-card{background:#fff;border:1px solid #dbe5e2;border-radius:8px;box-shadow:0 18px 42px rgba(4,33,26,.09)}
.ac-form-card,.ao-card{padding:24px}.ac-card-head,.ao-card-head{display:flex;justify-content:space-between;gap:16px;align-items:start;margin-bottom:18px}.ac-card-head h2,.ao-card-head h2{margin:0;color:#082e23;font-size:27px;font-weight:950}.ac-card-head>span,.ao-card-head>span{display:inline-flex;gap:7px;align-items:center;border-radius:999px;background:#e1f8ed;color:#006b4a;padding:8px 12px;font-weight:900;font-size:12px;white-space:nowrap}
.ac-stepper,.ao-stepper{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-bottom:18px}.ao-stepper{grid-template-columns:repeat(3,1fr)}.ac-stepper button,.ao-stepper button{border:1px solid #dbe5e2;background:#f8fbfa;border-radius:8px;padding:10px;display:flex;align-items:center;gap:9px;color:#42514d;font-weight:900}.ac-stepper b,.ao-stepper b{width:26px;height:26px;display:grid;place-items:center;border-radius:50%;background:#dce6e3}.ac-stepper .is-active,.ao-stepper .is-active{background:#006b4a;color:#fff;border-color:#006b4a}.ac-stepper .is-active b,.ao-stepper .is-active b{background:#fff;color:#006b4a}
.ac-step,.ao-step{display:none}.ac-step.is-active,.ao-step.is-active{display:block}.ac-grid,.ao-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.ac-field,.ao-field{display:grid;gap:7px;color:#082e23;font-weight:900}.ac-field-full,.ao-field-full{grid-column:1/-1}.ac-field input,.ac-field select,.ac-field textarea,.ao-field input,.ao-field select,.ao-field textarea{width:100%;border:1px solid #cfdad7;border-radius:8px;background:#fbfdfc;min-height:44px;padding:10px 12px;color:#101b18;font-weight:650}.ac-field textarea,.ao-field textarea{resize:vertical}
.ac-actions,.ao-actions{display:flex;justify-content:space-between;gap:10px;margin-top:18px}.ac-btn,.ao-btn{min-height:44px;border-radius:7px;border:1px solid transparent;padding:0 18px;display:inline-flex;align-items:center;justify-content:center;gap:8px;font-weight:950}.ac-btn-green,.ao-btn-green{background:#00895f;color:#fff}.ac-btn-light,.ao-btn-light{background:#fff;color:#082e23;border-color:#cfdad7}.ac-safe{margin:12px 0 0;color:#53625e;font-size:12px;font-weight:800}
.ac-side,.ao-side{display:grid;gap:14px}.ac-side-card,.ao-side-card{padding:22px}.ac-side-card i,.ao-side-card i{width:44px;height:44px;display:grid;place-items:center;border-radius:50%;background:#e1f8ed;color:#00895f;font-size:22px;margin-bottom:12px}.ac-side-card h3,.ao-side-card h2{margin:0 0 8px;color:#082e23;font-weight:950}.ac-side-card p,.ao-side-card p{margin:0;color:#33423e;font-weight:650;line-height:1.45}.ac-side-card-green{background:linear-gradient(135deg,#00895f,#003f2e);color:#fff}.ac-side-card-green i{background:rgba(255,255,255,.16);color:#fff}.ac-side-card-green h3,.ac-side-card-green p{color:#fff}.ac-side-card-green div{display:flex;gap:8px;margin-top:14px}.ac-side-card-green a{flex:1;text-align:center;border:1px solid rgba(255,255,255,.42);border-radius:6px;color:#fff;padding:8px;font-weight:900}
.ao-tabs{width:min(1180px,calc(100% - 96px));margin:24px auto 0;display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.ao-tabs a{min-height:58px;border:1px solid #dbe5e2;border-radius:8px;background:#fff;color:#082e23;display:flex;align-items:center;justify-content:center;gap:10px;font-weight:950;box-shadow:0 10px 24px rgba(4,33,26,.05)}.ao-tabs a.is-active{background:#00895f;color:#fff;border-color:#00895f}.ao-tabs i{font-size:20px}
.ao-mini-list{display:grid;gap:9px}.ao-mini-list span{display:flex;align-items:center;gap:9px;background:#fff;border:1px solid #dbe5e2;border-radius:8px;padding:12px;font-weight:900;color:#082e23}.ao-mini-list i{color:#00895f}.ao-services{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.ao-services label{border:1px solid #dbe5e2;border-radius:8px;padding:12px;display:flex;gap:9px;align-items:center;font-weight:900;background:#fbfdfc}.ao-consent{display:flex;gap:10px;margin-top:14px;border:1px solid #dbe5e2;border-radius:8px;padding:13px;background:#f8fbfa;color:#25322f;font-weight:800}
.aidf-input-error{border-color:#c93522!important;box-shadow:0 0 0 3px rgba(201,53,34,.12)!important}.aidf-field-error{color:#c93522;font-size:12px;font-weight:800}
[data-aidf-step-submit]{display:none}.is-final-step [data-aidf-step-next]{display:none}.is-final-step [data-aidf-step-submit]{display:inline-flex}
@media(max-width:767.98px){
 .ac-hero,.ao-hero{min-height:auto;padding:28px 16px;grid-template-columns:1fr;gap:16px}.ac-hero aside,.ao-hero aside{grid-template-columns:1fr 1fr}.ac-hero aside span,.ao-hero aside span{padding:12px}.ac-hero h1,.ao-hero h1{font-size:29px}.ac-hero p,.ao-hero p{font-size:13px}
 .ac-shell,.ao-shell,.ao-tabs{width:calc(100% - 20px);margin:14px auto 28px;grid-template-columns:1fr}.ao-tabs{grid-template-columns:repeat(2,1fr);gap:8px}.ao-tabs a{min-height:44px;font-size:12px}
 .ac-form-card,.ao-card,.ac-side-card,.ao-side-card{border-radius:8px}.ac-form-card,.ao-card{padding:14px}.ac-card-head,.ao-card-head{display:block}.ac-card-head>span,.ao-card-head>span{margin-top:10px}.ac-card-head h2,.ao-card-head h2{font-size:22px}
 .ac-grid,.ao-grid,.ao-services{grid-template-columns:1fr}.ac-stepper span,.ao-stepper span{font-size:11px}.ac-stepper button,.ao-stepper button{padding:8px;gap:6px}.ac-stepper b,.ao-stepper b{width:22px;height:22px}
 .ac-actions,.ao-actions{position:sticky;bottom:0;background:#fff;padding:10px 0;margin-bottom:-4px}.ac-btn,.ao-btn{flex:1;padding:0 10px;font-size:12px}.ao-side{order:2}.ao-card{order:1}
}

/* Public site standardization pass: compact, uniform, and mobile edge-to-edge. */
.aidf-home-v3{
  overflow-x:hidden;
  background:#fff;
  color:#101b18;
  text-rendering:optimizeLegibility;
}
.aidf-home-v3 .aidf-full-bleed-main,
.aidf-home-v3 main.container{
  min-width:0;
}
.aidf-home-v3 main.container{
  max-width:1180px;
}
.aidf-home-v3 h1,
.aidf-home-v3 h2,
.aidf-home-v3 h3,
.aidf-home-v3 h4{
  letter-spacing:0;
}
.aidf-home-v3 p:last-child,
.aidf-home-v3 ul:last-child,
.aidf-home-v3 ol:last-child{
  margin-bottom:0;
}
.aidf-home-v3 .app-section,
.aidf-home-v3 .li-section,
.aidf-home-v3 .li-section--alt{
  padding:30px 0;
  margin-top:18px;
}
.aidf-home-v3 .app-section-header,
.aidf-home-v3 .li-section-header{
  margin-bottom:18px;
}
.aidf-home-v3 .app-section-header h2,
.aidf-home-v3 .li-section-header h2{
  margin:0;
  color:#082e23;
  font-size:clamp(24px,3vw,36px);
  line-height:1.08;
  font-weight:950;
}
.aidf-home-v3 .app-section-header p,
.aidf-home-v3 .li-section-header p{
  max-width:720px;
  margin:8px auto 0;
  color:#465550;
  font-weight:650;
  line-height:1.45;
}
.aidf-home-v3 .app-card,
.aidf-home-v3 .app-card-body,
.aidf-home-v3 .li-loan-card,
.aidf-home-v3 .aidf-future-form-card,
.aidf-home-v3 .aidf-onboarding-panel{
  border-radius:8px;
  border:1px solid #dbe5e2;
  background:#fff;
  box-shadow:0 14px 32px rgba(4,33,26,.08);
}
.aidf-home-v3 .app-card-body,
.aidf-home-v3 .li-loan-card,
.aidf-home-v3 .aidf-future-form-card,
.aidf-home-v3 .aidf-onboarding-panel{
  padding:22px;
}
.aidf-home-v3 .li-loan-card{
  display:grid;
  gap:10px;
}
.aidf-home-v3 .li-loan-card h3,
.aidf-home-v3 .app-card h3{
  margin:0;
  color:#082e23;
  font-size:20px;
  font-weight:950;
}
.aidf-home-v3 .li-loan-card p,
.aidf-home-v3 .app-card p{
  color:#33423e;
  font-weight:650;
  line-height:1.45;
}
.aidf-home-v3 .li-loan-card-meta{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.aidf-home-v3 .li-loan-card-meta span{
  border-radius:7px;
  background:#f2faf6;
  padding:8px 10px;
  color:#123a30;
  font-size:12px;
  font-weight:850;
}
.aidf-home-v3 .app-hero-btn,
.aidf-home-v3 .li-btn,
.aidf-home-v3 .li-product-card-arrow,
.aidf-home-v3 .aidf-btn-account-submit{
  border-radius:6px;
  min-height:42px;
  font-weight:950;
}
.aidf-home-v3 .aidf-open-account-hero{
  border-radius:8px;
  background:linear-gradient(90deg,rgba(0,45,32,.94),rgba(0,137,95,.74)),url("../images/aidf-home-hero-branch.png") center/cover no-repeat;
  color:#fff;
  padding:48px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:28px;
  align-items:center;
}
.aidf-home-v3 .aidf-open-account-hero h1{
  max-width:760px;
  margin:0;
  font-size:clamp(34px,5vw,54px);
  line-height:1;
  font-weight:950;
}
.aidf-home-v3 .aidf-open-account-hero p{
  max-width:760px;
  color:rgba(255,255,255,.9);
  font-weight:700;
}
.aidf-home-v3 .aidf-onboarding-steps{
  display:grid;
  gap:10px;
}
.aidf-home-v3 .aidf-onboarding-steps span{
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  background:rgba(0,0,0,.18);
  padding:12px 14px;
  color:#fff;
  font-weight:850;
}
.aidf-home-v3 .aidf-onboarding-steps strong{
  color:#aaf0ce;
  margin-right:8px;
}
.aidf-home-v3 .aidf-open-account-layout{
  margin:24px 0 36px;
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:22px;
  align-items:start;
}
.aidf-home-v3 .aidf-side-stack{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.aidf-home-v3 .aidf-onboarding-panel h2{
  margin:0;
  color:#082e23;
  font-size:24px;
  line-height:1.15;
  font-weight:950;
}
.aidf-home-v3 .aidf-side-stack article{
  border:1px solid #dbe5e2;
  border-radius:8px;
  background:#f8fbfa;
  padding:14px;
  color:#101b18;
}
.aidf-home-v3 .aidf-side-stack article strong{
  display:block;
  color:#082e23;
  margin-bottom:5px;
  font-weight:950;
}
.aidf-home-v3 .aidf-side-stack article p,
.aidf-home-v3 .aidf-onboarding-panel p{
  color:#33423e;
  font-weight:650;
}
.aidf-home-v3 .aidf-future-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.aidf-home-v3 .aidf-future-field{
  display:grid;
  gap:7px;
  margin:0 0 12px;
  color:#082e23;
  font-weight:900;
}
.aidf-home-v3 .aidf-future-field.full{
  margin-top:12px;
}
.aidf-home-v3 .aidf-future-field input,
.aidf-home-v3 .aidf-future-field select,
.aidf-home-v3 .aidf-future-field textarea{
  width:100%;
  border:1px solid #cfdad7;
  border-radius:8px;
  background:#fbfdfc;
  min-height:44px;
  padding:10px 12px;
  color:#101b18;
  font-weight:650;
}
.aidf-home-v3 .aidf-form-section-title{
  margin:16px 0 10px;
  color:#006b4a;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
}
.aidf-home-v3 .aidf-future-consent{
  display:flex;
  gap:10px;
  margin-top:12px;
  border:1px solid #dbe5e2;
  border-radius:8px;
  padding:13px;
  background:#f8fbfa;
  color:#25322f;
  font-weight:800;
}
.aidf-home-v3 .aidf-future-submit{
  margin-top:18px;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.aidf-home-v3 .ah-footer h3::after{
  content:"";
}
@media (min-width:768px) and (max-width:1199.98px){
  .aidf-home-v3 .ah-header{
    padding:0 28px;
    grid-template-columns:250px 130px 1fr 120px;
    gap:16px;
  }
  .aidf-home-v3 .ah-app-promo,
  .aidf-home-v3 .ah-products,
  .aidf-home-v3 .ah-premier,
  .aidf-home-v3 .ah-support,
  .aidf-home-v3 .ah-score,
  .aidf-home-v3 .ah-online,
  .aidf-home-v3 .ah-survey,
  .aidf-home-v3 .ah-trust,
  .aidf-home-v3 .ah-bottom-app{
    width:calc(100% - 56px);
  }
  .aidf-home-v3 .ah-quick{
    width:calc(100% - 56px);
  }
}
@media (max-width:767.98px){
  html,
  body.aidf-home-v3{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }
  .aidf-home-v3 .ah-page,
  .aidf-home-v3 .aidf-full-bleed-main,
  .aidf-home-v3 main.container,
  .aidf-home-v3 .app-mobile-page{
    width:100%;
    max-width:100%;
    margin-left:0;
    margin-right:0;
  }
  .aidf-home-v3 main.container{
    padding-left:0!important;
    padding-right:0!important;
    padding-top:0!important;
    padding-bottom:20px!important;
  }
  .aidf-home-v3 main.container > .alert,
  .aidf-home-v3 main.container > section:not(.app-page-hero):not(.li-page-hero),
  .aidf-home-v3 main.container > div:not(.app-mobile-page){
    width:calc(100% - 20px);
    margin-left:auto;
    margin-right:auto;
  }
  .aidf-home-v3 .app-section,
  .aidf-home-v3 .li-section,
  .aidf-home-v3 .li-section--alt{
    padding:18px 0;
    margin-top:10px;
  }
  .aidf-home-v3 .app-section-header,
  .aidf-home-v3 .li-section-header{
    margin-bottom:12px;
    text-align:left;
  }
  .aidf-home-v3 .app-section-header h2,
  .aidf-home-v3 .li-section-header h2{
    font-size:22px;
  }
  .aidf-home-v3 .app-section-header p,
  .aidf-home-v3 .li-section-header p{
    margin:6px 0 0;
    font-size:13px;
  }
  .aidf-home-v3 .app-page-hero,
  .aidf-home-v3 .li-page-hero,
  .aidf-home-v3 .aidf-open-account-hero,
  .aidf-home-v3 .ac-hero,
  .aidf-home-v3 .ao-hero{
    width:100%;
    margin-left:0;
    margin-right:0;
    border-radius:0;
  }
  .aidf-home-v3 .app-page-hero-inner,
  .aidf-home-v3 .li-page-hero-inner{
    padding:24px 16px;
  }
  .aidf-home-v3 .app-feature-card,
  .aidf-home-v3 .li-feature-card,
  .aidf-home-v3 .app-product-card,
  .aidf-home-v3 .li-product-card,
  .aidf-home-v3 .app-stat-card,
  .aidf-home-v3 .li-stat-card,
  .aidf-home-v3 .app-card-body,
  .aidf-home-v3 .li-loan-card{
    padding:14px;
    box-shadow:0 8px 20px rgba(4,33,26,.06);
  }
  .aidf-home-v3 .li-loan-card-meta{
    grid-template-columns:1fr;
  }
  .aidf-home-v3 .aidf-open-account-hero{
    padding:26px 16px;
    grid-template-columns:1fr;
    gap:14px;
    width:100vw;
    max-width:100vw;
    margin-top:0!important;
    margin-left:calc(50% - 50vw)!important;
    margin-right:calc(50% - 50vw)!important;
  }
  .aidf-home-v3 .aidf-open-account-hero h1{
    font-size:29px;
  }
  .aidf-home-v3 .aidf-open-account-hero p{
    font-size:13px;
  }
  .aidf-home-v3 .aidf-onboarding-steps{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .aidf-home-v3 .aidf-onboarding-steps span{
    padding:10px;
    font-size:11px;
  }
  .aidf-home-v3 .aidf-open-account-layout{
    width:calc(100% - 20px);
    margin:14px auto 28px;
    grid-template-columns:1fr;
    gap:14px;
  }
  .aidf-home-v3 .aidf-onboarding-panel h2{
    font-size:20px;
  }
  .aidf-home-v3 .aidf-future-form-card,
  .aidf-home-v3 .aidf-onboarding-panel{
    padding:14px;
  }
  .aidf-home-v3 .aidf-future-grid{
    grid-template-columns:1fr;
    gap:0;
  }
  .aidf-home-v3 .aidf-future-submit{
    display:none!important;
  }
  .aidf-home-v3 .ah-footer{
    padding-left:14px;
    padding-right:14px;
  }
  .aidf-home-v3 .ah-footer h3::after{
    content:"+";
    font-size:10px;
    color:#fff;
  }
}

/* Premium loans page with repayment calculator. */
.aidf-loans-page .aidf-full-bleed-main{background:#fff}
.al-hero{min-height:430px;padding:58px 88px;color:#fff;background:linear-gradient(90deg,rgba(0,45,32,.95),rgba(0,137,95,.74)),url("../images/aidf-home-hero-branch.png") center/cover no-repeat;display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:36px;align-items:center}
.al-hero nav{display:flex;gap:9px;margin-bottom:16px;color:rgba(255,255,255,.76);font-size:13px;font-weight:850}.al-hero nav a{color:#fff}.al-hero small,.al-section-head small,.al-calc-head small,.al-cta small{display:block;text-transform:uppercase;letter-spacing:.08em;color:#aaf0ce;font-size:12px;font-weight:950;margin-bottom:8px}
.al-hero h1{max-width:820px;margin:0;font-size:clamp(42px,5.8vw,72px);line-height:.96;font-weight:950;letter-spacing:0}.al-hero p{max-width:760px;margin:20px 0 0;color:rgba(255,255,255,.9);font-size:18px;line-height:1.48;font-weight:750}
.al-actions,.al-calc-actions,.al-cta>div:last-child{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}.al-btn{min-height:45px;border-radius:7px;padding:0 18px;display:inline-flex;align-items:center;justify-content:center;gap:8px;font-weight:950;text-decoration:none;border:1px solid transparent}.al-btn-light{background:#fff;color:#082e23}.al-btn-outline{border-color:rgba(255,255,255,.55);color:#fff}.al-btn-green{background:#00895f;color:#fff}.al-btn-ghost{border-color:#b7cbc5;color:#082e23;background:#fff}
.al-hero-panel{display:grid;gap:12px}.al-hero-panel span{border:1px solid rgba(255,255,255,.24);border-radius:8px;background:rgba(0,0,0,.2);padding:22px;backdrop-filter:blur(8px)}.al-hero-panel strong{display:block;font-size:34px;line-height:1;font-weight:950}.al-hero-panel em{display:block;margin-top:8px;color:rgba(255,255,255,.78);font-style:normal;font-weight:750}
.al-wrap{width:min(1180px,calc(100% - 96px));margin-left:auto;margin-right:auto}.al-overview{margin-top:-42px;position:relative;z-index:2;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.al-overview article,.al-product-card,.al-calculator,.al-process-grid article{border:1px solid #dbe5e2;border-radius:8px;background:#fff;box-shadow:0 16px 38px rgba(4,33,26,.08)}.al-overview article{padding:22px}.al-overview i,.al-product-icon{width:48px;height:48px;display:grid;place-items:center;border-radius:50%;background:#e1f8ed;color:#00895f;font-size:22px;margin-bottom:14px}.al-overview h2,.al-product-card h3,.al-process h3{margin:0;color:#082e23;font-size:20px;font-weight:950}.al-overview p,.al-product-card p,.al-process p{margin:8px 0 0;color:#33423e;font-weight:650;line-height:1.45}
.al-main{margin-top:30px;display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:22px;align-items:start}.al-section-head{margin-bottom:18px}.al-section-head small,.al-calc-head small,.al-cta small{color:#00895f}.al-section-head h2,.al-calc-head h2,.al-cta h2{margin:0;color:#082e23;font-size:clamp(26px,3vw,38px);line-height:1.08;font-weight:950;letter-spacing:0}.al-section-head p,.al-calc-head p,.al-cta p{max-width:760px;margin:8px 0 0;color:#52635e;font-weight:650;line-height:1.45}
.al-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.al-product-card{padding:22px;display:grid;gap:12px}.al-product-card p{min-height:62px}.al-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.al-meta span{border-radius:7px;background:#f3faf7;padding:10px;color:#263936;font-size:12px;font-weight:800}.al-meta b{display:block;color:#006b4a;font-size:18px;font-weight:950}.al-card-actions{display:flex;align-items:center;justify-content:space-between;gap:10px;border-top:1px solid #e3ece9;padding-top:12px}.al-card-actions a,.al-text-btn{border:0;background:transparent;color:#006b4a;font-weight:950;text-decoration:none}.al-text-btn{padding:0}.al-card-actions a{white-space:nowrap}
.al-calculator{position:sticky;top:18px;padding:24px}.al-calc-fields{display:grid;gap:12px;margin-top:18px}.al-calc-fields label{display:grid;gap:7px;color:#082e23;font-size:13px;font-weight:900}.al-calc-fields input{width:100%;min-height:45px;border:1px solid #cbd9d5;border-radius:8px;background:#fbfdfc;padding:10px 12px;color:#101b18;font-weight:750}.al-calc-fields input:focus{outline:0;border-color:#00895f;box-shadow:0 0 0 4px rgba(0,137,95,.12)}
.al-result{margin-top:16px;border-radius:8px;background:linear-gradient(135deg,#00895f,#003f2e);padding:20px;color:#fff}.al-result span{display:block;color:rgba(255,255,255,.78);font-size:12px;font-weight:850;text-transform:uppercase;letter-spacing:.05em}.al-result strong{display:block;margin-top:6px;font-size:36px;line-height:1;font-weight:950}.al-result em{display:block;margin-top:8px;color:rgba(255,255,255,.8);font-style:normal;font-size:12px;font-weight:700}
.al-calc-actions{margin-top:14px}.al-calc-actions .al-btn{flex:1;padding-left:12px;padding-right:12px}
.al-process{margin-top:34px}.al-process-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.al-process-grid article{padding:20px}.al-process-grid b{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#00895f;color:#fff;font-weight:950;margin-bottom:14px}
.al-cta{margin-top:34px;margin-bottom:42px;border-radius:8px;background:linear-gradient(135deg,#00895f,#003f2e);color:#fff;padding:34px;display:flex;align-items:center;justify-content:space-between;gap:24px}.al-cta small{color:#aaf0ce}.al-cta h2,.al-cta p{color:#fff}.al-cta p{color:rgba(255,255,255,.82)}
@media(max-width:991.98px){.al-hero{padding:34px 20px;grid-template-columns:1fr}.al-hero-panel{grid-template-columns:repeat(3,1fr)}.al-overview,.al-main,.al-process-grid{grid-template-columns:1fr}.al-product-grid{grid-template-columns:1fr}.al-calculator{position:static}.al-cta{display:block}.al-cta>div:last-child{margin-top:18px}}
@media(max-width:767.98px){.al-hero{padding:26px 16px}.al-hero h1{font-size:34px}.al-hero p{font-size:13px}.al-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}.al-actions .al-btn{min-width:0;padding:0 10px;font-size:12px;line-height:1.15;text-align:center}.al-hero-panel{grid-template-columns:1fr 1fr;gap:8px}.al-hero-panel span{padding:14px}.al-hero-panel strong{font-size:24px}.al-hero-panel span:last-child{grid-column:1/-1}.al-wrap{width:calc(100% - 20px)}.al-overview{margin-top:14px}.al-overview article,.al-product-card,.al-calculator,.al-process-grid article{padding:16px}.al-main,.al-process,.al-cta{margin-top:20px}.al-calculator{order:-1}.al-products{order:1}.al-meta,.al-card-actions{grid-template-columns:1fr;display:grid}.al-result strong{font-size:30px}.al-calc-actions{display:grid}.al-cta{margin-bottom:26px;padding:22px}.al-cta .al-btn{width:100%}}

/* Mobile-specific public website experience. */
.ah-menu-backdrop,.ah-mobile-menu{display:none}
@media(max-width:767.98px){
  body.ah-menu-open{overflow:hidden}
  .aidf-home-v3 .ah-page{background:#f4f7f5}
  .aidf-home-v3 .ah-segments{
    height:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#030504;
    border-bottom:1px solid #1c1f1e;
  }
  .aidf-home-v3 .ah-segments a{
    min-width:0;
    padding:0 3px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border-right:1px solid #1c1f1e;
    font-size:14px;
    line-height:1.08;
    font-weight:850;
    text-align:center;
  }
  .aidf-home-v3 .ah-segments a:nth-child(3){font-size:13px}
  .aidf-home-v3 .ah-segments a.is-active{background:#10b981;color:#04130f}
  .aidf-home-v3 .ah-header{
    height:82px;
    grid-template-columns:1fr repeat(3,64px);
    gap:0;
    padding:0 10px 0 18px;
    background:#10b981;
    color:#04130f;
    position:sticky;
    top:0;
    z-index:40;
    box-shadow:0 2px 0 rgba(0,0,0,.12);
  }
  .aidf-home-v3 .ah-brand{height:82px;display:flex;align-items:center}
  .aidf-home-v3 .ah-mark{
    width:42px;
    height:42px;
    color:#031711;
    font-size:28px;
  }
  .aidf-home-v3 .ah-logo-img{
    height:42px;
    max-width:118px;
  }
  .aidf-home-v3 .ah-brand strong{display:none}
  .aidf-home-v3 .ah-nav-action{
    height:82px;
    width:64px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    border:0;
    background:transparent;
    color:#031711;
    font-size:13px;
    font-weight:850;
  }
  .aidf-home-v3 .ah-nav-action i{font-size:22px;line-height:1}
  .aidf-home-v3 .ah-search{
    height:82px;
    width:64px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .aidf-home-v3 .ah-search label{
    position:static;
    width:auto;
    height:auto;
    overflow:visible;
    clip:auto;
    display:block;
    order:2;
    margin-top:30px;
    margin-left:-38px;
    color:#031711;
    font-size:13px;
    font-weight:850;
  }
  .aidf-home-v3 .ah-search input{display:none}
  .aidf-home-v3 .ah-search button{
    width:64px;
    height:82px;
    margin:0;
    border:0;
    background:transparent;
    color:#031711;
    font-size:22px;
  }
  .ah-menu-backdrop{
    position:fixed;
    inset:0;
    z-index:80;
    background:rgba(0,0,0,.44);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease;
  }
  .ah-menu-backdrop.is-open{display:block;opacity:1;pointer-events:auto}
  .ah-mobile-menu{
    position:fixed;
    inset:0 auto 0 0;
    z-index:81;
    width:min(84vw,330px);
    display:block;
    transform:translateX(-102%);
    transition:transform .22s ease;
    background:#fff;
    box-shadow:18px 0 48px rgba(0,0,0,.22);
    padding:18px;
  }
  .ah-mobile-menu.is-open{transform:translateX(0)}
  .ah-mobile-menu-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;
    color:#082e23;
    font-size:22px;
    font-weight:950;
  }
  .ah-mobile-menu-head button{
    width:40px;
    height:40px;
    border:0;
    border-radius:50%;
    background:#e1f8ed;
    color:#006b4a;
  }
  .ah-mobile-menu a{
    min-height:50px;
    display:flex;
    align-items:center;
    gap:12px;
    border-bottom:1px solid #e3ece9;
    color:#082e23;
    font-weight:850;
    text-decoration:none;
  }
  .ah-mobile-menu a i{width:30px;color:#00895f;font-size:20px}
  body.page-home .ah-hero{
    min-height:auto;
    display:grid;
    grid-template-rows:150px auto;
    background:#00895f;
  }
  body.page-home .ah-hero picture,
  body.page-home .ah-hero img{
    position:relative;
    inset:auto;
    height:150px;
    width:100%;
    object-fit:cover;
    object-position:center;
  }
  body.page-home .ah-hero::after{
    display:none;
  }
  body.page-home .ah-hero-copy{
    padding:18px 18px 24px;
    width:100%;
    background:linear-gradient(135deg,#00895f,#006b4a);
    color:#fff;
  }
  body.page-home .ah-hero h1{
    width:min(100%,310px);
    margin:0;
    font-size:30px;
    line-height:1.02;
    font-weight:950;
  }
  body.page-home .ah-hero p{
    width:min(100%,330px);
    margin:10px 0 16px;
    font-size:13px;
    line-height:1.45;
    font-weight:750;
  }
  body.page-home .ah-hero-copy a{
    width:auto;
    min-width:0;
    height:42px;
    display:inline-flex;
    padding:0 16px;
    border-radius:7px;
    font-size:12px;
    gap:10px;
  }
  body.page-home .ah-dots{
    display:flex;
    left:auto;
    right:22px;
    bottom:22px;
    gap:8px;
  }
  body.page-home .ah-dots span{width:8px;height:8px}
  body.page-home .ah-quick{
    width:100%;
    display:block;
    background:#fff;
    border-top:1px solid #e1e8e5;
  }
  body.page-home .ah-quick a{
    height:54px;
    grid-template-columns:36px 1fr 20px;
    padding:0 18px;
    background:#fff;
    color:#082e23;
    border-bottom:1px solid #e3ece9;
  }
  body.page-home .ah-quick i:first-child{
    color:#00895f;
    font-size:20px;
  }
  body.page-home .ah-quick strong{font-size:13px}
  body.page-home .ah-app-promo,
  body.page-home .ah-products,
  body.page-home .ah-premier,
  body.page-home .ah-support,
  body.page-home .ah-score,
  body.page-home .ah-online,
  body.page-home .ah-survey,
  body.page-home .ah-trust,
  body.page-home .ah-bottom-app{
    width:calc(100% - 20px);
    margin-left:auto;
    margin-right:auto;
  }
  body.page-home .ah-app-promo{
    min-height:310px;
    margin-top:14px;
    padding:22px;
    border-radius:9px;
    background-position:center;
    background-size:cover;
    box-shadow:0 12px 30px rgba(4,33,26,.08);
  }
  body.page-home .ah-app-promo div{max-width:170px}
  body.page-home .ah-app-promo small{font-size:9px;color:#082e23}
  body.page-home .ah-app-promo h2{
    font-size:27px;
    line-height:1.02;
    margin:7px 0 10px;
    color:#082e23;
  }
  body.page-home .ah-app-promo p{
    font-size:11px;
    line-height:1.35;
    color:#152b25;
    font-weight:700;
  }
  body.page-home .ah-btn{
    width:150px;
    height:36px;
    margin-top:9px;
    border-radius:7px;
    font-size:9px;
  }
  body.page-home .ah-products{margin-top:18px}
  body.page-home .ah-title-row{
    margin-bottom:10px;
    padding:0 2px;
  }
  body.page-home .ah-title-row h2,
  body.page-home .ah-support>h2,
  body.page-home .ah-online>h2,
  body.page-home .ah-survey>h2{
    font-size:18px;
    text-align:center;
  }
  body.page-home .ah-title-row>a{font-size:10px;color:#00895f;font-weight:950}
  body.page-home .ah-product-row{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding:0 4px 14px;
    scroll-snap-type:x mandatory;
  }
  body.page-home .ah-product{
    min-width:205px;
    min-height:330px;
    border-radius:8px;
    scroll-snap-align:start;
    box-shadow:0 12px 28px rgba(4,33,26,.08);
  }
  body.page-home .ah-product-img{height:128px}
  body.page-home .ah-product-img i{
    width:42px;
    height:42px;
    left:14px;
    bottom:-21px;
    font-size:18px;
  }
  body.page-home .ah-product h3{
    margin:32px 14px 8px;
    font-size:17px;
  }
  body.page-home .ah-product p{
    margin:0 14px;
    font-size:11px;
    line-height:1.4;
  }
  body.page-home .ah-product a{
    margin:14px;
    min-height:36px;
    border-radius:6px;
    font-size:10px;
  }
  body.page-home .ah-premier{
    min-height:165px;
    margin-top:12px;
    grid-template-columns:82px 1fr;
    padding:18px;
    border-radius:8px;
  }
  body.page-home .ah-premier-badge{width:58px;height:58px;font-size:9px}
  body.page-home .ah-premier h2{font-size:19px}
  body.page-home .ah-premier p{font-size:10px;line-height:1.35}
  body.page-home .ah-premier a{width:160px;height:32px;font-size:9px}
  body.page-home .ah-support{
    margin-top:18px;
    padding:0;
    background:transparent;
  }
  body.page-home .ah-support-lead{
    height:auto;
    min-height:112px;
    grid-template-columns:46px 1fr;
    padding:16px;
    border-radius:8px;
    background:linear-gradient(135deg,#00a978,#00744f);
    color:#fff;
  }
  body.page-home .ah-support-lead i:first-child{font-size:30px;color:#fff}
  body.page-home .ah-support-lead>i:last-child{display:none}
  body.page-home .ah-support-lead strong{font-size:15px}
  body.page-home .ah-support-lead small{font-size:10px;line-height:1.35}
  body.page-home .ah-support-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:10px;
  }
  body.page-home .ah-support-grid a{
    min-height:126px;
    display:grid;
    grid-template-columns:44px 1fr;
    gap:8px 12px;
    padding:16px;
    border:1px solid #dbe5e2;
    border-radius:8px;
    box-shadow:0 8px 22px rgba(4,33,26,.06);
  }
  body.page-home .ah-support-grid i{font-size:29px;grid-row:1/4;color:#00895f}
  body.page-home .ah-support-grid strong{margin:0;font-size:15px}
  body.page-home .ah-support-grid span{margin:0;font-size:11px;line-height:1.4;max-width:none}
  body.page-home .ah-support-grid em{display:block;margin:0;font-size:10px;color:#006b4a}
  body.page-home .ah-score{
    min-height:250px;
    margin-top:14px;
    grid-template-columns:1fr;
    border-radius:8px;
    background:#fff;
  }
  body.page-home .ah-score img{
    order:-1;
    height:128px;
    border-radius:8px 8px 0 0;
  }
  body.page-home .ah-score div{padding:16px}
  body.page-home .ah-score h2{font-size:18px}
  body.page-home .ah-score p{font-size:11px;line-height:1.4}
  body.page-home .ah-score a{width:100%;height:38px;font-size:10px}
  body.page-home .ah-online{margin-top:18px}
  body.page-home .ah-online>p{font-size:11px;margin:4px 0 10px}
  body.page-home .ah-online-grid{grid-template-columns:1fr;gap:10px}
  body.page-home .ah-mobile-app,
  body.page-home .ah-login-card{
    min-height:160px;
    border-radius:8px;
  }
  body.page-home .ah-mobile-app{
    grid-template-columns:64px 52px 1fr;
    gap:10px;
    padding:16px;
  }
  body.page-home .ah-qr{width:54px;height:54px}
  body.page-home .ah-mobile-app>i{font-size:48px}
  body.page-home .ah-mobile-app strong,
  body.page-home .ah-login-card strong{font-size:16px}
  body.page-home .ah-mobile-app small,
  body.page-home .ah-login-card small{font-size:10px;line-height:1.45}
  body.page-home .ah-login-card{padding:18px}
  body.page-home .ah-login-card span{height:34px;font-size:10px}
  body.page-home .ah-survey{margin-top:18px}
  body.page-home .ah-survey-grid{
    display:grid;
    gap:10px;
    padding:0;
    border:0;
  }
  body.page-home .ah-survey article{
    padding:16px;
    border:1px solid #dbe5e2;
    border-radius:8px;
    background:#fff;
  }
  body.page-home .ah-survey h3{font-size:16px}
  body.page-home .ah-survey p,
  body.page-home .ah-survey a{font-size:11px;line-height:1.4}
  body.page-home .ah-ranking div{
    grid-template-columns:92px 1fr 34px;
    gap:8px;
    font-size:10px;
  }
  body.page-home .ah-ranking b{height:11px}
  body.page-home .ah-trust{
    margin-top:14px;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
  }
  body.page-home .ah-trust div{
    min-height:78px;
    padding:10px;
    grid-template-columns:26px 1fr;
    background:#fff;
    border:1px solid #dbe5e2;
    border-radius:8px;
  }
  body.page-home .ah-trust i{font-size:22px}
  body.page-home .ah-trust strong{font-size:19px}
  body.page-home .ah-trust span{font-size:9px}
  body.page-home .ah-bottom-app{
    height:145px;
    margin-top:14px;
    padding:18px;
    border-radius:8px;
    background-size:auto 180%;
  }
  body.page-home .ah-bottom-app h2{font-size:18px}
  body.page-home .ah-bottom-app p{font-size:11px}
  body.page-home .ah-bottom-app a{width:150px;height:34px;font-size:9px}
  body.page-home .ah-footer{
    margin-top:14px;
    padding:16px 18px 22px;
  }
  body.page-home .ah-footer-grid>div{padding:10px 0}
  body.page-home .ah-footer h3{font-size:11px}
  body.page-home .ah-social i{font-size:14px}
  body.page-home .ah-footer-bottom{font-size:9px}

  body:not(.page-home) .ah-inner-content,
  .ah-inner-content{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0 0 20px;
    background:#f4f7f5;
  }
  .ah-inner-content .aidf-mb-premium-header{
    width:100%;
    margin:0!important;
    padding:26px 16px 28px;
    color:#fff;
    background:linear-gradient(135deg,rgba(0,45,32,.96),rgba(0,137,95,.78)),url("../images/aidf-home-hero-branch.png") center/cover no-repeat;
  }
  .ah-inner-content .aidf-mb-premium-kicker{
    display:block;
    margin-bottom:10px;
    color:#aaf0ce;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:12px;
    font-weight:950;
  }
  .ah-inner-content .aidf-mb-premium-header h1{
    margin:0;
    color:#fff;
    font-size:32px;
    line-height:1.03;
    font-weight:950;
    letter-spacing:0;
  }
  .ah-inner-content .aidf-mb-premium-header p{
    margin:12px 0 0;
    color:rgba(255,255,255,.9);
    font-size:14px;
    line-height:1.48;
    font-weight:720;
  }
  .ah-inner-content .aidf-mb-premium-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:18px;
  }
  .ah-inner-content .aidf-mb-premium-actions a{
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    border-radius:7px;
    text-decoration:none;
    font-size:12px;
    font-weight:950;
    line-height:1.2;
  }
  .ah-inner-content .aidf-mb-cta-primary{
    background:#fff;
    color:#082e23;
  }
  .ah-inner-content .aidf-mb-cta-ghost{
    border:1px solid rgba(255,255,255,.52);
    color:#fff;
  }
  .ah-inner-content > .li-section--alt.d-md-none,
  .ah-inner-content > .li-section,
  .ah-inner-content > .li-section--alt{
    width:calc(100% - 20px);
    margin:12px auto 0;
    padding:0;
    background:transparent;
  }
  .ah-inner-content .li-mb-section-head,
  .ah-inner-content .li-section-header{
    margin:0 0 10px;
    text-align:left;
  }
  .ah-inner-content .li-mb-section-head h2,
  .ah-inner-content .li-section-header h2{
    margin:0;
    color:#082e23;
    font-size:22px;
    line-height:1.12;
    font-weight:950;
  }
  .ah-inner-content .li-kicker{
    display:block;
    color:#00895f;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:11px;
    font-weight:950;
    margin-bottom:5px;
  }
  .ah-inner-content .li-feature-grid,
  .ah-inner-content .li-stat-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }
  .ah-inner-content .li-feature-card,
  .ah-inner-content .li-stat-card{
    border:1px solid #dbe5e2;
    border-radius:8px;
    background:#fff;
    box-shadow:0 8px 22px rgba(4,33,26,.06);
    padding:18px;
  }
  .ah-inner-content .li-feature-card i,
  .ah-inner-content .li-feature-card-icon,
  .ah-inner-content .li-feature-icon{
    width:50px;
    height:50px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#e1f8ed;
    color:#00895f;
    font-size:24px;
    margin-bottom:14px;
  }
  .ah-inner-content .li-feature-card h3,
  .ah-inner-content .li-stat-card strong{
    margin:0;
    color:#082e23;
    font-size:19px;
    line-height:1.18;
    font-weight:950;
  }
  .ah-inner-content .li-feature-card p{
    margin:8px 0 0;
    color:#263936;
    font-size:14px;
    line-height:1.48;
    font-weight:650;
  }
  .ah-inner-content .li-stat-card{
    display:grid;
    grid-template-columns:36px 1fr;
    gap:10px;
    align-items:center;
  }
  .ah-inner-content .li-stat-card i{
    color:#00895f;
    font-size:24px;
  }
  .ah-inner-content .li-stat-card span{
    grid-column:2;
    color:#65736f;
    font-size:11px;
    font-weight:800;
  }
  .ah-inner-content .li-faq-item{
    border:1px solid #dbe5e2;
    border-radius:8px;
    background:#fff;
    overflow:hidden;
    margin-bottom:9px;
    box-shadow:0 8px 20px rgba(4,33,26,.05);
  }
  .ah-inner-content .li-faq-question{
    width:100%;
    min-height:58px;
    border:0;
    background:#fff;
    color:#082e23;
    padding:14px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    text-align:left;
    font-size:14px;
    line-height:1.3;
    font-weight:950;
  }
  .ah-inner-content .li-faq-question i{
    transition:transform .18s ease;
    color:#00895f;
    flex:0 0 auto;
  }
  .ah-inner-content .li-faq-answer{
    display:none;
    padding:0 15px 15px;
    color:#33423e;
    font-size:13px;
    line-height:1.5;
    font-weight:650;
  }
  .ah-inner-content .li-faq-item.is-open .li-faq-answer{display:block}
  .ah-inner-content .li-faq-item.is-open .li-faq-question i{transform:rotate(180deg)}
  .ah-inner-content .li-cta-banner{
    display:block;
    border-radius:8px;
    padding:20px;
    background:linear-gradient(135deg,#00895f,#003f2e);
    color:#fff;
  }
  .ah-inner-content .li-cta-banner h2{
    margin:0;
    color:#fff;
    font-size:23px;
    line-height:1.12;
    font-weight:950;
  }
  .ah-inner-content .li-cta-banner p{
    margin:8px 0 0;
    color:rgba(255,255,255,.84);
    font-size:13px;
    font-weight:700;
  }
  .ah-inner-content .li-cta-banner-actions{
    display:grid;
    gap:9px;
    margin-top:15px;
  }
  .ah-inner-content .li-btn,
  .ah-inner-content .li-btn-gold,
  .ah-inner-content .li-btn-outline{
    min-height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:7px;
    font-size:12px;
    font-weight:950;
    text-decoration:none;
  }
  .ah-inner-content .li-btn-gold{background:#fff;color:#082e23}
  .ah-inner-content .li-btn-outline{border:1px solid rgba(255,255,255,.5);color:#fff}
}

/* Final menu modal override: full panel, not side drawer. */
.ah-menu-backdrop{
  position:fixed!important;
  inset:142px 0 0!important;
  z-index:78!important;
  display:none!important;
  background:rgba(0,0,0,.18)!important;
}
.ah-menu-backdrop.is-open{display:block!important}
.ah-mobile-menu{
  position:fixed!important;
  top:142px!important;
  left:0!important;
  right:0!important;
  bottom:auto!important;
  z-index:79!important;
  width:100%!important;
  max-width:none!important;
  max-height:calc(100dvh - 142px)!important;
  display:none!important;
  overflow:auto!important;
  padding:0!important;
  background:#f1f1f1!important;
  color:#050505!important;
  box-shadow:0 18px 38px rgba(0,0,0,.18)!important;
  transform:none!important;
  transition:none!important;
}
.ah-mobile-menu.is-open{display:block!important}
.ah-mobile-menu-list{
  width:min(1180px,calc(100% - 80px))!important;
  margin:0 auto!important;
  padding:34px 0 28px!important;
}
.ah-mobile-menu-list a{
  min-height:86px!important;
  display:grid!important;
  grid-template-columns:1fr 32px!important;
  align-items:center!important;
  gap:18px!important;
  border:0!important;
  color:#070707!important;
  text-decoration:none!important;
}
.ah-mobile-menu-list a strong{
  display:block!important;
  font-family:Georgia,"Times New Roman",serif!important;
  font-size:33px!important;
  line-height:1.05!important;
  font-weight:500!important;
  letter-spacing:0!important;
}
.ah-mobile-menu-list a small{
  display:block!important;
  margin-top:4px!important;
  color:#6f6f6f!important;
  font-size:19px!important;
  line-height:1.2!important;
  font-weight:800!important;
}
.ah-mobile-menu-list a>i{
  color:#050505!important;
  font-size:25px!important;
  justify-self:end!important;
}
.ah-mobile-menu-list hr{
  margin:16px 0!important;
  border:0!important;
  border-top:2px solid #676767!important;
  opacity:1!important;
}
body.ah-menu-open .ah-nav-action[data-ah-menu-toggle]{
  background:#f1f1f1!important;
  color:#050505!important;
}
body.ah-menu-open .ah-nav-action[data-ah-menu-toggle] i{
  font-size:26px!important;
}
@media(max-width:767.98px){
  .ah-mobile-menu-list{
    width:calc(100% - 40px)!important;
    padding:34px 0 22px!important;
  }
  .ah-mobile-menu-list a{
    min-height:90px!important;
    grid-template-columns:1fr 26px!important;
  }
  .ah-mobile-menu-list a strong{font-size:30px!important}
  .ah-mobile-menu-list a small{font-size:19px!important}
  .ah-mobile-menu-list a>i{font-size:23px!important}
  .ah-mobile-menu-list hr{margin:17px 0!important}
}

/* Premium AJAX loan application wizard. */
.aidf-apply-loan-page .aidf-full-bleed-main{background:#f5f8f6}
.apl-hero{min-height:360px;padding:52px 88px;color:#fff;background:linear-gradient(90deg,rgba(0,45,32,.95),rgba(0,137,95,.72)),url("../images/aidf-home-hero-branch.png") center/cover no-repeat;display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:32px;align-items:center}
.apl-hero nav{display:flex;gap:9px;margin-bottom:14px;color:rgba(255,255,255,.76);font-size:13px;font-weight:850}.apl-hero nav a{color:#fff}.apl-hero small,.apl-card-head small{display:block;text-transform:uppercase;letter-spacing:.08em;color:#aaf0ce;font-size:12px;font-weight:950;margin-bottom:8px}
.apl-hero h1{max-width:780px;margin:0;font-size:clamp(38px,5vw,62px);line-height:.98;font-weight:950;letter-spacing:0}.apl-hero p{max-width:760px;margin:16px 0 0;color:rgba(255,255,255,.9);font-size:17px;line-height:1.48;font-weight:750}
.apl-hero aside{display:grid;gap:12px}.apl-hero aside span{border:1px solid rgba(255,255,255,.24);border-radius:8px;background:rgba(0,0,0,.2);padding:20px;backdrop-filter:blur(8px)}.apl-hero aside strong{display:block;font-size:31px;line-height:1;font-weight:950}.apl-hero aside em{font-style:normal}
.apl-shell{width:min(1180px,calc(100% - 96px));margin:28px auto 52px;display:grid;grid-template-columns:330px minmax(0,1fr);gap:24px;align-items:start}.apl-side{display:grid;gap:14px}.apl-side-card,.apl-card{border:1px solid #dbe5e2;border-radius:8px;background:#fff;box-shadow:0 16px 38px rgba(4,33,26,.08)}.apl-side-card{padding:22px}.apl-side-card i{width:46px;height:46px;display:grid;place-items:center;border-radius:50%;background:#e1f8ed;color:#00895f;font-size:23px;margin-bottom:12px}.apl-side-card h2,.apl-side-card h3{margin:0 0 8px;color:#082e23;font-weight:950}.apl-side-card h2{font-size:24px;line-height:1.14}.apl-side-card h3{font-size:18px}.apl-side-card p{margin:0;color:#33423e;font-weight:650;line-height:1.45}.apl-side-card-green{background:linear-gradient(135deg,#00895f,#003f2e);color:#fff}.apl-side-card-green i{background:rgba(255,255,255,.16);color:#fff}.apl-side-card-green h2,.apl-side-card-green p{color:#fff}
.apl-card{padding:24px}.apl-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:18px}.apl-card-head h2{margin:0;color:#082e23;font-size:30px;line-height:1.1;font-weight:950}.apl-card-head>span{display:inline-flex;align-items:center;gap:7px;border-radius:999px;background:#e1f8ed;color:#006b4a;padding:8px 12px;font-size:12px;font-weight:950;white-space:nowrap}
.apl-product-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin:-4px 0 18px}.apl-product-summary span{border:1px solid #dbe5e2;border-radius:8px;background:#f8fbfa;padding:10px;color:#52635e;font-size:12px;font-weight:850}.apl-product-summary strong{display:block;color:#006b4a;font-size:18px;line-height:1;font-weight:950}.apl-product-brief ul{list-style:none;margin:0;padding:0;display:grid;gap:9px}.apl-product-brief li{position:relative;padding-left:22px;color:#33423e;font-size:13px;font-weight:750;line-height:1.35}.apl-product-brief li::before{content:"";position:absolute;left:0;top:.18rem;width:15px;height:15px;border-radius:50%;background:#e1f8ed}.apl-product-brief li::after{content:"";position:absolute;left:5px;top:.42rem;width:5px;height:8px;border:solid #00895f;border-width:0 2px 2px 0;transform:rotate(45deg)}.apl-field em{margin-top:-2px;color:#5a6965;font-size:11px;font-style:normal;font-weight:750}
.apl-stepper{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:18px}.apl-stepper button{border:1px solid #dbe5e2;background:#f8fbfa;border-radius:8px;padding:10px;display:flex;align-items:center;gap:9px;color:#42514d;font-weight:950}.apl-stepper b{width:26px;height:26px;display:grid;place-items:center;border-radius:50%;background:#dce6e3}.apl-stepper .is-active{background:#006b4a;color:#fff;border-color:#006b4a}.apl-stepper .is-active b{background:#fff;color:#006b4a}
.apl-step{display:none}.apl-step.is-active{display:block}.apl-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.apl-field{display:grid;gap:7px;color:#082e23;font-weight:900}.apl-field-full{grid-column:1/-1}.apl-field input,.apl-field select,.apl-field textarea{width:100%;border:1px solid #cfdad7;border-radius:8px;background:#fbfdfc;min-height:45px;padding:10px 12px;color:#101b18;font-weight:650}.apl-field textarea{resize:vertical}.apl-field input:focus,.apl-field select:focus,.apl-field textarea:focus{outline:0;border-color:#00895f;box-shadow:0 0 0 4px rgba(0,137,95,.12)}
.apl-consent{display:flex;gap:10px;margin-top:14px;border:1px solid #dbe5e2;border-radius:8px;background:#f8fbfa;padding:13px;color:#25322f;font-weight:800;line-height:1.4}.apl-actions{display:flex;justify-content:space-between;gap:10px;margin-top:18px}.apl-btn{min-height:44px;border-radius:7px;border:1px solid transparent;padding:0 18px;display:inline-flex;align-items:center;justify-content:center;gap:8px;font-weight:950}.apl-btn-green{background:#00895f;color:#fff}.apl-btn-light{background:#fff;color:#082e23;border-color:#cfdad7}[data-aidf-step-submit]{display:none}.is-final-step [data-aidf-step-next]{display:none}.is-final-step [data-aidf-step-submit]{display:inline-flex}
@media(max-width:767.98px){.apl-hero{min-height:auto;padding:26px 16px;grid-template-columns:1fr;gap:16px}.apl-hero h1{font-size:32px}.apl-hero p{font-size:13px}.apl-hero aside{grid-template-columns:1fr 1fr;gap:8px}.apl-hero aside span{padding:13px}.apl-hero aside span:last-child{grid-column:1/-1}.apl-shell{width:calc(100% - 20px);margin:14px auto 28px;grid-template-columns:1fr;gap:14px}.apl-side{order:2}.apl-card{order:1;padding:14px}.apl-side-card{padding:16px}.apl-card-head{display:block}.apl-card-head h2{font-size:23px}.apl-card-head>span{margin-top:10px}.apl-product-summary{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}.apl-product-summary span{padding:9px}.apl-stepper{gap:7px}.apl-stepper button{padding:8px 7px;gap:6px}.apl-stepper b{width:23px;height:23px}.apl-stepper span{font-size:11px}.apl-grid{grid-template-columns:1fr;gap:12px}.apl-field-full{grid-column:auto}.apl-actions{position:sticky;bottom:0;z-index:15;background:#fff;padding:10px 0;margin-bottom:-4px}.apl-btn{flex:1;padding:0 9px;font-size:12px}.apl-consent{font-size:12px}}

/* Professional public footer. */
.ah-footer{margin-top:0;background:#000;color:#fff;padding:0 78px 26px}
.ah-footer-app-cta{display:block;min-height:356px;margin:0 auto 94px;border-radius:18px;background:linear-gradient(90deg,#007553 0%,#007553 42%,rgba(0,117,83,.7) 58%,#007553 100%),var(--footer-app-img) right center/auto 150% no-repeat;color:#fff;padding:66px 64px;overflow:hidden}
.ah-footer-app-cta h2{margin:0;max-width:640px;font-family:Georgia,"Times New Roman",serif;font-size:42px;line-height:1.08;font-weight:500;letter-spacing:0}
.ah-footer-app-cta p{margin:34px 0 48px;font-size:22px;line-height:1.3;font-weight:850}
.ah-footer-app-cta a{width:348px;min-height:64px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:#fff;color:#000!important;font-size:22px!important;line-height:1;font-weight:950;text-decoration:none}
.ah-footer-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:72px;align-items:start}
.ah-footer-toggle{width:100%;border:0;background:transparent;color:#fff;padding:0;text-align:left;font:inherit;cursor:pointer}
.ah-footer-toggle span,.ah-footer-connect h3{display:block;margin:0 0 30px;font-family:Georgia,"Times New Roman",serif;font-size:24px;font-weight:700;line-height:1.08}
.ah-footer-toggle i{display:none}
.ah-footer-links a{display:block;color:#fff;font-size:22px;line-height:1.28;font-weight:800;text-decoration:none;margin-bottom:21px}
.ah-footer .ah-social a{color:#fff;text-decoration:none}
.ah-footer-connect{grid-column:1/-1;border-top:1px solid rgba(255,255,255,.18);padding-top:26px}
.ah-social{display:flex;gap:18px;margin-top:0}.ah-social i{width:36px;height:36px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.65);border-radius:50%;font-size:17px}
.ah-footer-bottom{border-top:1px solid rgba(255,255,255,.18);margin-top:30px;padding-top:18px;display:flex;justify-content:space-between;font-size:12px;color:#d8d8d8}.ah-footer-bottom a{color:#fff;font-weight:900;text-decoration:none}
@media(max-width:767.98px){
  body.page-home .ah-bottom-app{display:none}
  .ah-footer{margin-top:0!important;padding:0 24px 22px!important;background:#000!important;color:#fff}
  .ah-footer-app-cta{display:block;margin:0 4px 132px;padding:24px 22px 30px;border-radius:0 0 18px 18px;background:#007a57;color:#fff}
  .ah-footer-app-cta h2{margin:0;max-width:330px;font-family:Georgia,"Times New Roman",serif;font-size:39px;line-height:1.02;font-weight:600;letter-spacing:0}
  .ah-footer-app-cta p{margin:34px 0 32px;font-size:21px;line-height:1.25;font-weight:850}
  .ah-footer-app-cta a{width:min(100%,348px);min-height:64px;display:flex!important;align-items:center;justify-content:center;border-radius:12px;background:#fff;color:#000!important;font-size:21px!important;line-height:1;font-weight:950;text-decoration:none}
  .ah-footer-grid{display:block!important;margin:0!important;padding:0!important}
  .ah-footer-grid>div,body.page-home .ah-footer-grid>div{border-bottom:1px solid rgba(255,255,255,.72)!important;padding:0!important}
  .ah-footer-col:not(.ah-footer-connect) .ah-footer-toggle{min-height:85px;display:flex;align-items:center;justify-content:space-between;gap:16px}
  .ah-footer-toggle span,body.page-home .ah-footer h3,.ah-footer-connect h3{margin:0;font-family:Georgia,"Times New Roman",serif;font-size:24px!important;line-height:1.05;font-weight:700;letter-spacing:0}
  .ah-footer-toggle i{display:block;flex:0 0 auto;color:#fff;font-size:24px;transition:transform .18s ease}
  .ah-footer-col.is-open .ah-footer-toggle i{transform:rotate(180deg)}
  .ah-footer-links{display:none;padding:0 0 18px}
  .ah-footer-col.is-open .ah-footer-links{display:block}
  .ah-footer-links a,.ah-footer a{display:block;min-height:34px;color:#d8d8d8!important;font-size:16px!important;line-height:1.35!important;font-weight:700;text-decoration:none}
  .ah-footer-connect{margin-top:56px;padding-bottom:0!important;border-bottom:0!important}
  .ah-footer-connect h3{margin-bottom:18px;font-family:Inter,Arial,sans-serif;font-size:18px!important;font-weight:900}
  .ah-social{display:flex!important;flex-wrap:wrap;align-items:center;gap:29px!important;margin:0!important}
  .ah-social a,.ah-social i{width:auto!important;height:auto!important;border:0!important;display:grid;place-items:center;color:#fff;font-size:28px!important;line-height:1}
  .ah-footer-bottom{margin-top:34px!important;padding-top:18px!important;border-top:1px solid rgba(255,255,255,.18)!important;display:flex!important;justify-content:space-between;align-items:center;gap:16px;color:#d5d5d5;font-size:11px!important;line-height:1.4}
  .ah-footer-bottom a{display:inline-flex!important;align-items:center;gap:5px;color:#fff!important;white-space:nowrap;font-size:11px!important;font-weight:900}
  .ah-footer .ah-footer-app-cta a{color:#000!important;background:#fff!important}
}
@media(max-width:420px){
  .ah-footer{padding-left:20px!important;padding-right:20px!important}
  .ah-footer-app-cta{margin-left:4px;margin-right:4px;margin-bottom:126px;padding:6px 22px 30px}
  .ah-footer-app-cta h2{font-size:40px}
  .ah-footer-app-cta p{font-size:21px}
  .ah-footer-app-cta a{min-height:64px}
}
