/* ═══════════════════════════════════════════════════════════
   SHREE LAMBODAR — MORTAGE.CSS
   Font: Inter (all weights)
   Theme: #254036 / #1e3a2f / Gold / Warm Cream
   Aesthetic: Premium Property Finance · Architectural Grid
═══════════════════════════════════════════════════════════ */

:root {
  --green:       #1e3a2f;
  --green-hero:  #254036;
  --green-mid:   #2a5240;
  --green-lt:    #3a7a5a;
  --gold:        #c8a84b;
  --gold-light:  #e8c76a;
  --gold-pale:   #f5e9c8;
  --white:       #ffffff;
  --off-white:   #f7f9f8;
  --cream:       #fdfaf5;
  --warm:        #f3f5f3;
  --text-dark:   #1a2e25;
  --text-body:   #364f43;
  --text-muted:  #697d72;
  --border:      rgba(30,58,47,0.10);
  --border-lt:   rgba(30,58,47,0.06);

  --hh:          80px;
  --r-xs:        4px;
  --r-sm:        8px;
  --r-md:        14px;
  --r-lg:        22px;
  --r-xl:        32px;
  --sh-xs:       0 1px 8px rgba(30,58,47,0.06);
  --sh-sm:       0 4px 18px rgba(30,58,47,0.09);
  --sh-md:       0 10px 38px rgba(30,58,47,0.12);
  --sh-lg:       0 24px 72px rgba(30,58,47,0.16);
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --spring:      cubic-bezier(0.34,1.56,0.64,1);
  --tr:          all 0.32s var(--ease);
  --tr-f:        all 0.18s var(--ease);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;color:var(--text-dark);background:var(--white);overflow-x:hidden;-webkit-font-smoothing:antialiased;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{cursor:pointer;font-family:inherit;border:none;background:none;}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;height:var(--hh);background:#fff;box-shadow:0 1px 0 var(--border-lt),0 4px 20px rgba(30,58,47,0.07);transition:var(--tr);}
.header.scrolled{background:#254036;box-shadow:0 4px 32px rgba(37,64,54,0.35);}
.header .nav-link{color:rgba(37,64,54,0.82);}
.header .nav-link:hover{color:var(--green-hero);background:rgba(37,64,54,0.06);}
.header.scrolled .nav-link{color:rgba(255,255,255,0.90);}
.header.scrolled .nav-link:hover{color:var(--gold-light);background:rgba(255,255,255,0.08);}
.header .ham-bar{background:var(--green-hero);}
.header.scrolled .ham-bar{background:#fff;}
.nav-item--active>.nav-link{color:var(--green-hero)!important;font-weight:700;}
.header.scrolled .nav-item--active>.nav-link{color:var(--gold-light)!important;}
.subdropdown-link--active{color:var(--green)!important;font-weight:700;background:var(--off-white);}

.header-container{max-width:1320px;margin:0 auto;padding:0 2rem;height:100%;display:flex;align-items:center;gap:2rem;}
.logo{flex-shrink:0;margin-right:auto;display:flex;align-items:center;background:rgba(255,255,255,0.97);padding:5px 18px 5px 10px;border-radius:50px;box-shadow:0 2px 16px rgba(0,0,0,0.10);border:1px solid rgba(255,255,255,0.6);transition:var(--tr);}
.logo:hover{background:#fff;transform:translateY(-1px);box-shadow:0 4px 22px rgba(0,0,0,0.16);}
.logo-img{height:50px;width:auto;object-fit:contain;display:block;}
.nav{display:flex;}
.nav-list{display:flex;align-items:center;gap:0.15rem;}
.nav-item{position:relative;}
.nav-link{display:flex;align-items:center;gap:4px;padding:0.5rem 0.8rem;font-size:0.875rem;font-weight:500;border-radius:var(--r-sm);transition:var(--tr-f);white-space:nowrap;letter-spacing:0.005em;}
.chevron{width:14px;height:14px;stroke:currentColor;transition:transform 0.25s;flex-shrink:0;}
.nav-item.has-dropdown:hover .chevron{transform:rotate(180deg);}
.dropdown{position:absolute;top:calc(100% + 10px);left:0;min-width:284px;background:var(--white);border-radius:var(--r-md);box-shadow:var(--sh-lg);border:1px solid var(--border);opacity:0;visibility:hidden;transform:translateY(-8px);transition:opacity 0.2s,transform 0.2s,visibility 0.2s;overflow:visible;z-index:100;}
.dropdown::before{content:'';position:absolute;top:-6px;left:20px;width:12px;height:12px;background:var(--white);border-left:1px solid var(--border);border-top:1px solid var(--border);transform:rotate(45deg);border-radius:2px;}
.nav-item.has-dropdown:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0);}
.dropdown-item{position:relative;border-bottom:1px solid var(--border-lt);}
.dropdown-item:last-child{border-bottom:none;}
.dropdown-link{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:0.8rem 1rem;font-size:0.85rem;font-weight:500;color:var(--text-body);transition:var(--tr-f);line-height:1.4;}
.dropdown-link:hover{color:var(--green);background:var(--off-white);}
.chevron-right{width:14px;height:14px;stroke:currentColor;flex-shrink:0;opacity:0.45;transition:opacity 0.2s,transform 0.2s;}
.dropdown-item.has-subdropdown:hover .chevron-right{opacity:1;transform:translateX(3px);}
.subdropdown{position:absolute;left:100%;top:0;min-width:230px;background:var(--white);border-radius:var(--r-md);box-shadow:var(--sh-lg);border:1px solid var(--border);opacity:0;visibility:hidden;transform:translateX(-8px);transition:opacity 0.2s,transform 0.2s,visibility 0.2s;z-index:101;}
.dropdown-item.has-subdropdown:hover .subdropdown{opacity:1;visibility:visible;transform:translateX(0);}
.subdropdown li{border-bottom:1px solid var(--border-lt);}
.subdropdown li:last-child{border-bottom:none;}
.subdropdown-link{display:flex;align-items:center;padding:0.75rem 1rem;font-size:0.83rem;font-weight:400;color:var(--text-body);transition:var(--tr-f);gap:8px;}
.subdropdown-link::before{content:'';width:5px;height:5px;background:var(--gold);border-radius:50%;flex-shrink:0;opacity:0;transition:opacity 0.2s;}
.subdropdown-link:hover{color:var(--green);background:var(--off-white);padding-left:1.25rem;}
.subdropdown-link:hover::before{opacity:1;}
.header-cta{flex-shrink:0;display:inline-flex;align-items:center;padding:0.5rem 1.2rem;background:var(--gold);color:var(--green);font-size:0.875rem;font-weight:700;border-radius:50px;letter-spacing:0.015em;transition:var(--tr-f);}
.header-cta:hover{background:var(--gold-light);transform:translateY(-1px);box-shadow:0 6px 20px rgba(200,168,75,0.38);}
.hamburger{display:none;flex-direction:column;justify-content:center;align-items:center;width:42px;height:42px;gap:5px;border-radius:var(--r-sm);transition:var(--tr-f);flex-shrink:0;}
.hamburger:hover{background:rgba(37,64,54,0.07);}
.header.scrolled .hamburger:hover{background:rgba(255,255,255,0.08);}
.ham-bar{display:block;width:24px;height:2px;border-radius:2px;transition:transform 0.35s var(--ease),opacity 0.25s,width 0.3s,background 0.3s;transform-origin:center;}
.hamburger.active .ham-bar:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.active .ham-bar:nth-child(2){opacity:0;width:0;}
.hamburger.active .ham-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.mobile-nav{display:none;max-height:0;overflow:hidden;background:rgba(18,40,30,0.98);backdrop-filter:blur(20px);transition:max-height 0.45s var(--ease),opacity 0.35s;opacity:0;border-top:1px solid rgba(255,255,255,0.08);}
.mobile-nav.open{max-height:1000px;opacity:1;}
.mobile-nav-list{padding:1rem 1.5rem 1.5rem;display:flex;flex-direction:column;gap:2px;}
.mobile-nav-link{display:block;padding:0.85rem 1rem;font-size:0.95rem;font-weight:500;color:rgba(255,255,255,0.86);border-radius:var(--r-sm);transition:var(--tr-f);}
.mobile-nav-link:hover{color:var(--gold-light);background:rgba(255,255,255,0.06);}
.mobile-accordion-btn{width:100%;display:flex;align-items:center;justify-content:space-between;padding:0.85rem 1rem;font-size:0.95rem;font-weight:500;color:rgba(255,255,255,0.86);border-radius:var(--r-sm);transition:var(--tr-f);text-align:left;}
.mobile-sub-btn{font-size:0.875rem;color:rgba(255,255,255,0.65);padding-left:1.5rem;}
.mobile-accordion-btn:hover{color:var(--gold-light);background:rgba(255,255,255,0.06);}
.mobile-accordion-btn.active .chevron{transform:rotate(180deg);}
.mobile-accordion-list{max-height:0;overflow:hidden;transition:max-height 0.35s var(--ease);}
.mobile-accordion-list.open{max-height:600px;}
.mobile-sub-link{display:flex;align-items:center;gap:8px;padding:0.65rem 1rem 0.65rem 2.5rem;font-size:0.84rem;font-weight:400;color:rgba(255,255,255,0.58);transition:var(--tr-f);border-radius:var(--r-sm);}
.mobile-sub-link::before{content:'›';color:var(--gold);font-size:1.1rem;line-height:1;}
.mobile-sub-link:hover{color:var(--gold-light);background:rgba(255,255,255,0.05);}
.mobile-cta{display:block;margin-top:0.5rem;padding:0.85rem 1.5rem;background:var(--gold);color:var(--green);font-weight:700;border-radius:50px;text-align:center;font-size:0.95rem;transition:var(--tr-f);}
.mobile-cta:hover{background:var(--gold-light);}

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════════════════ */
.page-banner{
  position:relative;margin-top:var(--hh);
  height:520px;overflow:hidden;
  display:flex;align-items:center;
}
.banner-img-wrap{position:absolute;inset:0;z-index:0;}
.banner-img{width:100%;height:100%;object-fit:cover;object-position:center 40%;display:block;animation:kbBanner 22s ease-in-out infinite alternate;}
@keyframes kbBanner{from{transform:scale(1.04);}to{transform:scale(1.12);}}
.banner-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(110deg, rgba(30,58,47,0.92) 0%, rgba(37,64,54,0.68) 48%, rgba(22,44,34,0.42) 100%),
    linear-gradient(to top, rgba(20,38,28,0.72) 0%, transparent 50%);
}

/* Finance floating symbols */
.banner-particles{position:absolute;inset:0;z-index:1;pointer-events:none;overflow:hidden;}
.bp{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--gold-light);opacity:0.055;user-select:none;animation:bpFloat ease-in-out infinite;}
.bp-1{font-size:4.5rem;top:8%;right:12%;animation-duration:14s;animation-delay:0s;}
.bp-2{font-size:7.5rem;top:3%;right:4%;animation-duration:18s;animation-delay:2s;}
.bp-3{font-size:3.5rem;bottom:20%;right:28%;animation-duration:11s;animation-delay:5s;}
.bp-4{font-size:5.5rem;top:38%;left:4%;animation-duration:16s;animation-delay:1s;}
.bp-5{font-size:3rem;bottom:9%;left:17%;animation-duration:9s;animation-delay:4s;}
.bp-6{font-size:4.5rem;top:55%;right:44%;animation-duration:13s;animation-delay:3s;}
.bp-7{font-size:6rem;top:20%;left:28%;animation-duration:20s;animation-delay:7s;}
@keyframes bpFloat{0%,100%{transform:translateY(0) rotate(-3deg);}50%{transform:translateY(-14px) rotate(4deg);}}

/* Geometric accent shapes */
.banner-shapes{position:absolute;inset:0;z-index:1;pointer-events:none;overflow:hidden;}
.bs{position:absolute;border:1px solid rgba(200,168,75,0.12);border-radius:50%;animation:bsRotate linear infinite;}
.bs-1{width:420px;height:420px;top:-160px;right:-120px;animation-duration:40s;}
.bs-2{width:260px;height:260px;bottom:-80px;left:-80px;animation-duration:30s;animation-direction:reverse;}
.bs-3{width:160px;height:160px;top:60%;right:18%;border-color:rgba(200,168,75,0.08);animation-duration:25s;}
@keyframes bsRotate{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}

/* Banner content */
.banner-content{
  position:relative;z-index:2;
  padding:0 2rem 0 max(2rem,calc((100vw - 1260px)/2 + 2rem));
  max-width:720px;
  display:flex;flex-direction:column;gap:1.15rem;
  animation:bannerSlide 0.9s var(--ease) both;
}
@keyframes bannerSlide{from{opacity:0;transform:translateX(-28px);}to{opacity:1;transform:translateX(0);}}
.banner-breadcrumb{display:flex;align-items:center;gap:6px;font-size:0.78rem;font-weight:500;color:rgba(255,255,255,0.50);letter-spacing:0.03em;flex-wrap:wrap;}
.bc-link{color:var(--gold);transition:color 0.2s;cursor:pointer;}
.bc-link:hover{color:var(--gold-light);}
.bc-current{color:rgba(255,255,255,0.68);}
.banner-eyebrow{
  display:flex;align-items:center;gap:12px;
  font-size:0.7rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;
  color:rgba(255,255,255,0.55);
}
.banner-eyebrow-line{flex-shrink:0;height:1px;width:32px;background:rgba(200,168,75,0.5);}
.banner-title{display:flex;flex-direction:column;gap:0;}
.bt-top{
  font-size:clamp(1.9rem,4vw,3.2rem);font-weight:900;color:#fff;
  line-height:1.1;letter-spacing:-0.03em;
  text-shadow:0 4px 28px rgba(0,0,0,0.22);
}
.bt-bottom{
  font-size:clamp(2.4rem,5.5vw,4.5rem);font-weight:900;
  color:var(--gold);line-height:1.05;letter-spacing:-0.03em;
}
.bt-bottom em{font-style:italic;font-weight:800;color:var(--gold-light);}
.banner-sub{font-size:0.9rem;font-weight:500;color:rgba(255,255,255,0.50);letter-spacing:0.02em;}
.banner-stats{
  display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;
  padding-top:0.3rem;
  animation:bannerSlide 0.9s 0.2s var(--ease) both;
}
.bstat{display:flex;align-items:center;gap:0.65rem;}
.bstat-icon{
  width:38px;height:38px;border-radius:10px;
  background:rgba(200,168,75,0.12);border:1px solid rgba(200,168,75,0.22);
  display:flex;align-items:center;justify-content:center;color:var(--gold);
  flex-shrink:0;
}
.bstat-val{font-size:1rem;font-weight:900;color:#fff;letter-spacing:-0.02em;line-height:1;}
.bstat-label{font-size:0.62rem;font-weight:700;color:rgba(255,255,255,0.42);letter-spacing:0.07em;text-transform:uppercase;display:block;margin-top:2px;}
.bstat-div{width:1px;height:36px;background:rgba(255,255,255,0.12);flex-shrink:0;}

/* Scroll hint */
.banner-scroll-hint{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);z-index:3;}
.bsh-inner{display:flex;flex-direction:column;align-items:center;gap:6px;}
.bsh-text{font-size:0.6rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:rgba(255,255,255,0.35);}
.bsh-line{width:1px;height:32px;background:linear-gradient(to bottom,rgba(200,168,75,0.6),transparent);animation:lineAnim 2s ease-in-out infinite;}
@keyframes lineAnim{0%,100%{transform:scaleY(0.5);opacity:0.5;transform-origin:top;}50%{transform:scaleY(1);opacity:1;}}

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION UTILITIES
═══════════════════════════════════════════════════════════ */
.ml-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:0.72rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;}
.ml-eyebrow--light{color:var(--gold);}
.ml-eyebrow--light::before,.ml-eyebrow--light::after{content:'';width:26px;height:1.5px;background:var(--gold);opacity:0.5;border-radius:2px;}
.ml-eyebrow--dark{color:var(--green-lt);}
.ml-eyebrow--dark::before,.ml-eyebrow--dark::after{content:'';width:26px;height:1.5px;background:var(--green-lt);opacity:0.6;border-radius:2px;}
.ml-section-title{font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:800;line-height:1.14;letter-spacing:-0.02em;margin:0.75rem 0 0.5rem;}
.ml-section-title--light{color:#fff;}
.ml-section-title--dark{color:var(--text-dark);}
.mst-accent-gold{color:var(--gold);font-style:italic;}
.mst-accent-green{color:var(--green-hero);font-style:italic;}
.ml-section-bar{width:50px;height:4px;border-radius:4px;margin-bottom:3rem;}
.ml-section-bar--gold{background:linear-gradient(90deg,var(--gold),var(--gold-light));}
.ml-section-bar--green{background:linear-gradient(90deg,var(--green-hero),var(--gold));}

/* ═══════════════════════════════════════════════════════════
   INTRO / HERO SECTION  (cream bg)
═══════════════════════════════════════════════════════════ */
.ml-intro{position:relative;padding:7rem 0 6rem;background:var(--cream);overflow:hidden;}
.ml-intro-bg{position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden;}
.mib-mesh{position:absolute;inset:0;background-image:linear-gradient(rgba(37,64,54,0.035) 1px,transparent 1px),linear-gradient(90deg,rgba(37,64,54,0.035) 1px,transparent 1px);background-size:56px 56px;}
.mib-orb{position:absolute;border-radius:50%;filter:blur(80px);}
.mib-orb--a{width:480px;height:480px;top:-150px;right:-130px;background:radial-gradient(ellipse,rgba(200,168,75,0.07) 0%,transparent 70%);animation:orbPulse 11s ease-in-out infinite;}
.mib-orb--b{width:380px;height:380px;bottom:-110px;left:-90px;background:radial-gradient(ellipse,rgba(37,64,54,0.08) 0%,transparent 70%);animation:orbPulse 15s ease-in-out infinite reverse;}
@keyframes orbPulse{0%,100%{transform:scale(1);}50%{transform:scale(1.1);}}
.mib-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--green);opacity:0.03;user-select:none;animation:symFloat ease-in-out infinite;}
.ms1{font-size:6.5rem;top:5%;left:2%;animation-duration:16s;}
.ms2{font-size:4.5rem;top:22%;right:3%;animation-duration:12s;animation-delay:4s;}
.ms3{font-size:4rem;bottom:16%;left:10%;animation-duration:18s;animation-delay:2s;}
.ms4{font-size:3.5rem;bottom:8%;right:15%;animation-duration:14s;animation-delay:7s;}
.ms5{font-size:5.5rem;top:52%;left:44%;animation-duration:20s;animation-delay:1s;}
@keyframes symFloat{0%,100%{transform:translateY(0px);}50%{transform:translateY(-18px);}}

.ml-intro-container{
  position:relative;z-index:2;
  max-width:1240px;margin:0 auto;padding:0 2rem;
  display:grid;grid-template-columns:1fr 1.1fr;
  gap:5.5rem;align-items:center;
}

/* Image col */
.ml-img-col{position:relative;display:flex;align-items:center;justify-content:center;}
.ml-img-glow{
  position:absolute;width:80%;height:80%;
  background:radial-gradient(ellipse,rgba(200,168,75,0.10) 0%,transparent 70%);
  border-radius:50%;filter:blur(40px);
  animation:glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse{0%,100%{opacity:0.7;transform:scale(1);}50%{opacity:1;transform:scale(1.08);}}
.ml-img-frame{
  position:relative;z-index:1;
  border-radius:var(--r-lg);overflow:hidden;
  box-shadow:var(--sh-lg),0 0 0 1px rgba(37,64,54,0.07);
  width:100%;max-width:480px;
  transition:box-shadow 0.4s var(--ease);
  will-change:transform;
}
.ml-img-frame:hover{box-shadow:0 40px 90px rgba(37,64,54,0.24);}
.ml-img{width:100%;height:540px;object-fit:cover;display:block;transition:transform 0.6s var(--ease);}
.ml-img-frame:hover .ml-img{transform:scale(1.04);}
.ml-img-gradient{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 55%,rgba(30,58,47,0.25) 100%);pointer-events:none;}

/* Floating chips */
.ml-chip{
  position:absolute;z-index:3;
  background:var(--white);border-radius:var(--r-md);
  box-shadow:var(--sh-md);border:1px solid var(--border);
}
.ml-chip--top{
  top:22px;right:-20px;
  display:flex;align-items:center;gap:10px;padding:0.8rem 1.1rem;
  animation:chipBob 3.4s ease-in-out infinite;
}
.ml-chip-icon{flex-shrink:0;width:36px;height:36px;border-radius:10px;background:rgba(37,64,54,0.08);display:flex;align-items:center;justify-content:center;color:var(--green-hero);}
.ml-chip-text{display:flex;flex-direction:column;gap:1px;}
.ml-chip-label{font-size:0.62rem;font-weight:700;color:var(--text-muted);letter-spacing:0.07em;text-transform:uppercase;}
.ml-chip-value{font-size:0.88rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.01em;}
.ml-chip--bottom{
  bottom:26px;left:-20px;
  display:flex;flex-direction:column;align-items:center;gap:1px;
  padding:0.9rem 1.2rem;
  background:var(--green-hero);border-color:transparent;
  animation:chipBob 3.8s 0.7s ease-in-out infinite;
}
.ml-chip-mini-label{font-size:0.58rem;font-weight:700;color:rgba(255,255,255,0.52);letter-spacing:0.08em;text-transform:uppercase;}
.ml-chip-big{font-size:1.25rem;font-weight:900;color:var(--gold);line-height:1;letter-spacing:-0.02em;}
@keyframes chipBob{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

/* Secured tag on image */
.ml-img-tag{
  position:absolute;bottom:18px;right:16px;z-index:3;
  display:inline-flex;align-items:center;gap:5px;
  padding:0.3rem 0.75rem;
  background:rgba(200,168,75,0.90);color:var(--green);
  border-radius:50px;font-size:0.65rem;font-weight:900;
  letter-spacing:0.08em;text-transform:uppercase;
  backdrop-filter:blur(8px);
}

/* Corner accents */
.ml-corner{position:absolute;width:24px;height:24px;z-index:2;}
.ml-corner--tl{top:-3px;left:-3px;border-top:3px solid var(--gold);border-left:3px solid var(--gold);border-radius:var(--r-xs) 0 0 0;}
.ml-corner--br{bottom:-3px;right:-3px;border-bottom:3px solid var(--gold);border-right:3px solid var(--gold);border-radius:0 0 var(--r-xs) 0;}

/* Content col */
.ml-content-col{display:flex;flex-direction:column;gap:1.5rem;}
.ml-content-tag{
  display:inline-flex;align-items:center;gap:7px;
  padding:0.32rem 0.9rem;
  background:rgba(37,64,54,0.08);border:1px solid rgba(37,64,54,0.14);
  border-radius:50px;color:var(--green-hero);
  font-size:0.72rem;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;
  width:fit-content;
}
.ml-content-title{
  font-size:clamp(1.9rem,3.5vw,3rem);
  font-weight:800;color:var(--text-dark);line-height:1.1;letter-spacing:-0.03em;
}
.ml-title-accent{color:var(--green-hero);font-style:italic;display:block;}
.ml-content-rule{display:flex;align-items:center;gap:8px;}
.mlcr-dot{width:8px;height:8px;border-radius:50%;border:2px solid var(--gold);flex-shrink:0;}
.mlcr-dot--fill{background:var(--gold);}
.mlcr-line{height:1px;width:60px;background:linear-gradient(to right,var(--gold),transparent);}
.ml-content-body{font-size:0.96rem;line-height:1.82;color:var(--text-body);}
.ml-content-body strong{color:var(--green-hero);font-weight:700;}

/* Features */
.ml-features{display:flex;flex-direction:column;gap:0.6rem;}
.ml-feature{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1rem 1.2rem;
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--r-md);box-shadow:var(--sh-xs);
  transition:transform 0.3s var(--spring),box-shadow 0.3s,border-color 0.3s;
}
.ml-feature:hover{transform:translateX(6px);box-shadow:var(--sh-sm);border-color:rgba(37,64,54,0.18);}
.ml-feature-icon{
  flex-shrink:0;width:42px;height:42px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  transition:transform 0.25s;
}
.ml-feature:hover .ml-feature-icon{transform:scale(1.1);}
.ml-fi--green{background:rgba(37,64,54,0.08);border:1.5px solid rgba(37,64,54,0.12);color:var(--green-hero);}
.ml-fi--gold{background:rgba(200,168,75,0.10);border:1.5px solid rgba(200,168,75,0.22);color:#8a6820;}
.ml-feature-text{display:flex;flex-direction:column;gap:2px;}
.ml-feature-heading{font-size:0.875rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.01em;}
.ml-feature-desc{font-size:0.78rem;color:var(--text-muted);line-height:1.5;}

/* ═══════════════════════════════════════════════════════════
   DETAILS SECTION  (dark green)
═══════════════════════════════════════════════════════════ */
.ml-details{position:relative;padding:7rem 0 6rem;background:var(--green);overflow:hidden;}
.mld-bg{position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden;}
.mld-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,0.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.022) 1px,transparent 1px);background-size:56px 56px;}
.mld-orb{position:absolute;border-radius:50%;filter:blur(80px);}
.mld-orb--1{width:600px;height:600px;top:-250px;right:-180px;background:radial-gradient(ellipse,rgba(200,168,75,0.09) 0%,transparent 70%);animation:orbPulse 11s ease-in-out infinite;}
.mld-orb--2{width:450px;height:450px;bottom:-170px;left:-130px;background:radial-gradient(ellipse,rgba(58,122,90,0.18) 0%,transparent 70%);animation:orbPulse 15s ease-in-out infinite reverse;}
.mld-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--gold);opacity:0.04;user-select:none;animation:symFloat ease-in-out infinite;}
.ds1{font-size:7rem;top:5%;left:3%;animation-duration:14s;}
.ds2{font-size:5rem;top:24%;right:4%;animation-duration:18s;animation-delay:3s;}
.ds3{font-size:4rem;bottom:10%;left:35%;animation-duration:12s;animation-delay:6s;}
.ds4{font-size:6rem;bottom:5%;right:18%;animation-duration:16s;animation-delay:2s;}

.mld-container{position:relative;z-index:2;max-width:1240px;margin:0 auto;padding:0 2rem;}
.mld-header{text-align:center;margin-bottom:0;}

.mld-cards{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.mld-card{
  position:relative;overflow:hidden;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-lg);
  padding:2rem 1.7rem 1.7rem;
  display:flex;flex-direction:column;gap:1rem;
  transition:transform 0.38s var(--spring),box-shadow 0.38s,border-color 0.3s;
  opacity:0;transform:translateY(28px);
}
.mld-card.revealed{opacity:1;transform:translateY(0);}
.mld-card:hover{transform:translateY(-10px);box-shadow:0 22px 50px rgba(0,0,0,0.3);border-color:rgba(200,168,75,0.28);}
.mld-card--featured{
  background:rgba(200,168,75,0.10);
  border-color:rgba(200,168,75,0.28);
  transform:translateY(-10px);
}
.mld-card--featured.revealed{transform:translateY(-10px);}
.mld-card--featured:hover{transform:translateY(-18px);border-color:rgba(200,168,75,0.55);}
.mld-card-featured-tag{
  display:inline-flex;align-items:center;gap:5px;
  padding:0.25rem 0.72rem;
  background:var(--gold);color:var(--green);
  border-radius:50px;font-size:0.62rem;font-weight:900;
  letter-spacing:0.07em;text-transform:uppercase;width:fit-content;
  margin-bottom:0.25rem;
}
.mld-card-bg-num{
  position:absolute;top:0.8rem;right:1.2rem;
  font-size:4rem;font-weight:900;color:#fff;
  opacity:0.04;line-height:1;letter-spacing:-0.04em;
  pointer-events:none;user-select:none;
}
.mld-card-top{display:flex;align-items:center;justify-content:space-between;}
.mld-card-icon{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:transform 0.25s;
}
.mld-card:hover .mld-card-icon{transform:scale(1.1) rotate(-5deg);}
.mld-ci--green{background:rgba(58,122,90,0.20);border:1.5px solid rgba(58,122,90,0.35);color:#7dcba0;}
.mld-ci--gold{background:rgba(200,168,75,0.12);border:1.5px solid rgba(200,168,75,0.28);color:var(--gold-light);}
.mld-card-badge{
  display:inline-block;padding:0.2rem 0.65rem;
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);
  border-radius:50px;font-size:0.65rem;font-weight:700;
  color:rgba(255,255,255,0.55);letter-spacing:0.06em;text-transform:uppercase;
}
.mld-card-badge--gold{background:rgba(200,168,75,0.14);border-color:rgba(200,168,75,0.30);color:var(--gold-light);}
.mld-card-title{font-size:1.02rem;font-weight:800;color:#fff;letter-spacing:-0.01em;line-height:1.3;}
.mld-card-body{font-size:0.845rem;line-height:1.78;color:rgba(255,255,255,0.58);flex:1;}
.mld-card-body strong{color:var(--gold-light);font-weight:700;}
.mld-card-footer{
  display:flex;align-items:center;gap:6px;
  padding-top:0.9rem;
  border-top:1px solid rgba(255,255,255,0.07);
  font-size:0.75rem;font-weight:700;
  color:rgba(255,255,255,0.38);letter-spacing:0.04em;
}
.mld-card-footer svg{color:var(--green-lt);flex-shrink:0;}
.mld-card-footer--gold{color:rgba(200,168,75,0.65);}
.mld-card-footer--gold svg{color:var(--gold);}

/* ═══════════════════════════════════════════════════════════
   DECLARATION SECTION  (warm off-white)
═══════════════════════════════════════════════════════════ */
.ml-declaration{position:relative;padding:7rem 0 6rem;background:var(--off-white);overflow:hidden;}
.mldecl-bg{position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden;}
.mldecl-mesh{position:absolute;inset:0;background-image:linear-gradient(rgba(37,64,54,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(37,64,54,0.03) 1px,transparent 1px);background-size:56px 56px;}
.mldecl-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--green);opacity:0.028;user-select:none;animation:symFloat ease-in-out infinite;}
.e1{font-size:7rem;top:4%;left:2%;animation-duration:15s;}
.e2{font-size:5rem;bottom:8%;right:4%;animation-duration:11s;animation-delay:3s;}
.e3{font-size:4rem;top:45%;right:20%;animation-duration:17s;animation-delay:1s;}
.e4{font-size:6rem;bottom:20%;left:38%;animation-duration:13s;animation-delay:5s;}

.mldecl-container{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:0 2rem;}
.mldecl-eyebrow{text-align:center;margin-bottom:0.5rem;}

.mldecl-layout{
  display:grid;grid-template-columns:1fr 1.4fr;
  gap:5rem;align-items:start;margin-top:2rem;
}

/* Left — visual block */
.mldecl-left{display:flex;flex-direction:column;align-items:flex-start;gap:1.5rem;position:relative;}
.mldecl-shield-wrap{
  position:relative;
  width:120px;height:120px;
  display:flex;align-items:center;justify-content:center;
}
.mldecl-shield-ring{
  position:absolute;border-radius:50%;
  border-style:dashed;
  animation:ringSpin linear infinite;
}
.mldecl-ring--outer{
  inset:-16px;
  border:1.5px dashed rgba(200,168,75,0.20);
  animation-duration:22s;
}
.mldecl-ring--inner{
  inset:-6px;
  border:1px dashed rgba(37,64,54,0.12);
  animation-duration:16s;animation-direction:reverse;
}
@keyframes ringSpin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}
.mldecl-shield-core{
  width:100%;height:100%;border-radius:50%;
  background:linear-gradient(135deg,rgba(37,64,54,0.10),rgba(200,168,75,0.08));
  border:1.5px solid rgba(37,64,54,0.14);
  display:flex;align-items:center;justify-content:center;
  color:var(--green-hero);position:relative;z-index:2;
  animation:shieldGlow 3s ease-in-out infinite;
}
@keyframes shieldGlow{0%,100%{box-shadow:0 0 0 0 rgba(37,64,54,0.15);}50%{box-shadow:0 0 0 12px rgba(37,64,54,0);}}

.mldecl-title{font-size:2rem;font-weight:900;color:var(--text-dark);letter-spacing:-0.03em;line-height:1.15;}
.mldecl-subtitle{font-size:0.9rem;line-height:1.75;color:var(--text-muted);max-width:300px;}

.mldecl-stat-row{
  display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap;
  padding:1.2rem 1.4rem;
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--r-md);box-shadow:var(--sh-xs);
  width:100%;
}
.mldecl-stat{display:flex;flex-direction:column;gap:2px;flex:1;min-width:60px;}
.mldecl-stat-val{font-size:1.1rem;font-weight:900;color:var(--text-dark);letter-spacing:-0.02em;line-height:1;}
.mldecl-stat-lbl{font-size:0.63rem;font-weight:700;color:var(--text-muted);letter-spacing:0.06em;text-transform:uppercase;}
.mldecl-stat-sep{width:1px;height:32px;background:var(--border);flex-shrink:0;}

/* Right — numbered list */
.mldecl-right{
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:var(--r-xl);
  padding:2.5rem;
  box-shadow:var(--sh-sm);
}
.mldecl-list{display:flex;flex-direction:column;gap:0;}
.mldecl-item{
  display:flex;align-items:flex-start;gap:1.2rem;
  padding:1.1rem 0;
  border-bottom:1px solid var(--border-lt);
  transition:background 0.18s;
}
.mldecl-item:last-child{border-bottom:none;}
.mldecl-item:hover{background:rgba(37,64,54,0.02);margin:0 -1rem;padding-left:1rem;padding-right:1rem;border-radius:var(--r-sm);}
.mldecl-item-num{
  flex-shrink:0;
  width:32px;height:32px;border-radius:9px;
  background:rgba(37,64,54,0.07);border:1px solid rgba(37,64,54,0.12);
  display:flex;align-items:center;justify-content:center;
  font-size:0.72rem;font-weight:900;color:var(--green-hero);
  letter-spacing:0.02em;margin-top:2px;
}
.mldecl-item-body{display:flex;flex-direction:column;gap:3px;}
.mldecl-item-body strong{font-size:0.875rem;font-weight:800;color:var(--text-dark);}
.mldecl-item-body p{font-size:0.835rem;line-height:1.68;color:var(--text-muted);}

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════ */
.ml-cta{position:relative;padding:5rem 0;background:var(--green-hero);overflow:hidden;}
.ml-cta-bg{position:absolute;inset:0;pointer-events:none;overflow:hidden;}
.mcta-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px);background-size:50px 50px;}
.mcta-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--gold);opacity:0.04;user-select:none;animation:symFloat ease-in-out infinite;}
.c1{font-size:5rem;top:10%;left:3%;animation-duration:13s;}
.c2{font-size:3.5rem;bottom:10%;right:5%;animation-duration:10s;animation-delay:2s;}
.c3{font-size:4rem;top:40%;right:30%;animation-duration:15s;animation-delay:4s;}

.ml-cta-inner{
  position:relative;z-index:2;
  max-width:1100px;margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;gap:2.5rem;flex-wrap:wrap;
}
.ml-cta-icon{
  flex-shrink:0;
  width:72px;height:72px;border-radius:20px;
  background:rgba(200,168,75,0.12);border:1px solid rgba(200,168,75,0.25);
  display:flex;align-items:center;justify-content:center;color:var(--gold);
  animation:ctaIconPulse 3s ease-in-out infinite;
}
@keyframes ctaIconPulse{0%,100%{box-shadow:0 0 0 0 rgba(200,168,75,0.3);}50%{box-shadow:0 0 0 10px rgba(200,168,75,0);}}
.ml-cta-text{flex:1;min-width:240px;}
.ml-cta-title{font-size:clamp(1.3rem,2.2vw,1.85rem);font-weight:800;color:#fff;letter-spacing:-0.02em;margin-bottom:0.4rem;}
.ml-cta-sub{font-size:0.88rem;color:rgba(255,255,255,0.50);line-height:1.65;max-width:500px;}
.ml-cta-actions{display:flex;align-items:center;gap:1rem;flex-shrink:0;flex-wrap:wrap;}
.ml-cta-btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  padding:0.85rem 1.75rem;
  background:var(--gold);color:var(--green);
  font-size:0.9rem;font-weight:800;
  border-radius:50px;letter-spacing:0.02em;
  transition:var(--tr-f);white-space:nowrap;
}
.ml-cta-btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(200,168,75,0.45);}
.ml-cta-btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  padding:0.85rem 1.5rem;
  background:transparent;color:rgba(255,255,255,0.80);
  border:1.5px solid rgba(255,255,255,0.22);
  font-size:0.9rem;font-weight:600;
  border-radius:50px;transition:var(--tr-f);white-space:nowrap;
}
.ml-cta-btn-ghost:hover{border-color:rgba(255,255,255,0.55);color:#fff;background:rgba(255,255,255,0.08);transform:translateY(-2px);}
.ml-cta-btn-ghost svg{transition:transform 0.2s;}
.ml-cta-btn-ghost:hover svg{transform:translateX(4px);}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer{position:relative;background:var(--green);overflow:hidden;}
.footer-bg{position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden;}
.footer-bg-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,0.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.022) 1px,transparent 1px);background-size:56px 56px;}
.footer-bg-orb{position:absolute;border-radius:50%;filter:blur(70px);}
.footer-bg-orb--1{width:600px;height:600px;top:-260px;right:-200px;background:radial-gradient(ellipse,rgba(200,168,75,0.07) 0%,transparent 70%);animation:orbPulse 18s ease-in-out infinite;}
.footer-bg-orb--2{width:450px;height:450px;bottom:-180px;left:-160px;background:radial-gradient(ellipse,rgba(58,122,90,0.14) 0%,transparent 70%);animation:orbPulse 22s ease-in-out infinite reverse;}
.footer-bg-icon{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--gold);opacity:0.04;user-select:none;animation:symFloat ease-in-out infinite;}
.fbi-1{font-size:8rem;top:6%;left:3%;animation-duration:15s;}
.fbi-2{font-size:5rem;top:40%;right:4%;animation-duration:19s;animation-delay:4s;}
.fbi-3{font-size:6rem;bottom:16%;left:38%;animation-duration:13s;animation-delay:7s;}
.fbi-4{font-size:4rem;bottom:6%;right:22%;animation-duration:17s;animation-delay:2s;}
.footer-body{position:relative;z-index:2;padding:4rem 0 3rem;border-bottom:1px solid rgba(255,255,255,0.07);}
.footer-body-inner{max-width:1260px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1.5fr 1fr 1.3fr;gap:4rem;align-items:start;}
.footer-col{display:flex;flex-direction:column;gap:1.1rem;}
.footer-logo-wrap{display:inline-flex;align-items:center;width:fit-content;background:rgba(255,255,255,0.96);padding:7px 18px 7px 10px;border-radius:50px;border:1px solid rgba(255,255,255,0.3);transition:var(--tr);text-decoration:none;}
.footer-logo-wrap:hover{background:#fff;transform:translateY(-2px);}
.footer-logo-img{height:46px;width:auto;object-fit:contain;display:block;}
.footer-brand-desc{font-size:0.875rem;line-height:1.82;color:rgba(255,255,255,0.52);max-width:320px;}
.footer-social{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:0.15rem;}
.footer-social-btn{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.65);text-decoration:none;transition:background 0.22s,color 0.22s,border-color 0.22s,transform 0.22s;flex-shrink:0;}
.footer-social-btn:hover{background:var(--gold);border-color:var(--gold);color:var(--green);transform:translateY(-3px);}
.footer-col-title{display:flex;align-items:center;gap:10px;font-size:0.8rem;font-weight:800;letter-spacing:0.1em;text-transform:uppercase;color:#fff;margin-bottom:0.2rem;}
.footer-col-title-bar{display:block;width:20px;height:3px;background:var(--gold);border-radius:2px;flex-shrink:0;}
.footer-links-list{display:flex;flex-direction:column;gap:0;list-style:none;}
.footer-link{display:flex;align-items:center;gap:7px;padding:0.44rem 0;font-size:0.875rem;font-weight:400;color:rgba(255,255,255,0.52);text-decoration:none;border-bottom:1px solid rgba(255,255,255,0.04);transition:color 0.2s,gap 0.2s;line-height:1.5;}
.footer-links-list li:last-child .footer-link{border-bottom:none;}
.footer-link svg{flex-shrink:0;color:var(--gold);opacity:0;transition:opacity 0.2s,transform 0.2s;}
.footer-link:hover{color:rgba(255,255,255,0.92);gap:11px;}
.footer-link:hover svg{opacity:1;transform:translateX(2px);}
.footer-link--active{color:var(--gold-light)!important;font-weight:600;}
.footer-link--active svg{opacity:1!important;}
.footer-contact-list{display:flex;flex-direction:column;gap:0;}
.footer-contact-item{display:flex;align-items:flex-start;gap:11px;padding:0.7rem 0;border-bottom:1px solid rgba(255,255,255,0.05);}
.footer-contact-item:last-child{border-bottom:none;}
.footer-contact-icon{flex-shrink:0;margin-top:2px;width:32px;height:32px;border-radius:8px;background:rgba(200,168,75,0.10);border:1px solid rgba(200,168,75,0.18);display:flex;align-items:center;justify-content:center;color:var(--gold);}
.footer-contact-info{display:flex;flex-direction:column;gap:2px;min-width:0;}
.footer-contact-label{font-size:0.68rem;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--gold);line-height:1;opacity:0.75;}
.footer-contact-value{font-size:0.875rem;font-weight:400;color:rgba(255,255,255,0.65);line-height:1.6;display:block;}
.footer-contact-link{text-decoration:none;transition:color 0.18s;}
.footer-contact-link:hover{color:var(--gold-light);}
.footer-compliance{display:flex;align-items:center;gap:10px;margin-top:0.5rem;padding:0.85rem 1rem;background:rgba(200,168,75,0.08);border:1px solid rgba(200,168,75,0.2);border-radius:12px;}
.footer-compliance-icon{width:36px;height:36px;border-radius:50%;background:rgba(200,168,75,0.12);display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0;}
.footer-compliance-text{display:flex;flex-direction:column;gap:2px;}
.footer-compliance-title{font-size:0.78rem;font-weight:700;color:var(--gold-light);line-height:1.2;}
.footer-compliance-sub{font-size:0.7rem;color:rgba(255,255,255,0.38);letter-spacing:0.02em;}
.footer-bottom{position:relative;z-index:2;padding:1.15rem 0;background:rgba(0,0,0,0.20);}
.footer-bottom-inner{max-width:1260px;margin:0 auto;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.footer-copy{font-size:0.8rem;color:rgba(255,255,255,0.30);line-height:1.5;}
.footer-bottom-nav{display:flex;align-items:center;gap:0.55rem;flex-wrap:wrap;}
.footer-bottom-link{font-size:0.78rem;font-weight:500;color:rgba(255,255,255,0.36);text-decoration:none;transition:color 0.18s;white-space:nowrap;}
.footer-bottom-link:hover{color:var(--gold-light);}
.footer-bottom-sep{display:block;width:1px;height:12px;background:rgba(255,255,255,0.15);flex-shrink:0;}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media(max-width:1080px){
  .ml-intro-container{gap:3.5rem;}
  .mld-cards{grid-template-columns:repeat(2,1fr);}
  .footer-body-inner{grid-template-columns:1.3fr 1fr 1.2fr;gap:2.5rem;}
}
@media(max-width:900px){
  .nav{display:none;}
  .header-cta{display:none;}
  .hamburger{display:flex;}
  .mobile-nav{display:block;}
  .header-container{gap:1rem;}
  .page-banner{height:420px;}
  .bt-top{font-size:clamp(1.6rem,5vw,2.5rem);}
  .bt-bottom{font-size:clamp(2rem,6vw,3.4rem);}
  .banner-content{padding-left:2rem;}
  .ml-intro-container{grid-template-columns:1fr;gap:3.5rem;}
  .ml-img-col{max-width:440px;margin:0 auto;width:100%;}
  .ml-img{height:380px;}
  .ml-chip--top{right:10px;top:14px;}
  .ml-chip--bottom{left:10px;bottom:14px;}
  .mldecl-layout{grid-template-columns:1fr;gap:2.5rem;}
  .mldecl-left{flex-direction:row;flex-wrap:wrap;align-items:flex-start;gap:1.25rem;}
  .mldecl-shield-wrap{width:80px;height:80px;flex-shrink:0;}
  .mldecl-stat-row{max-width:100%;}
  .ml-cta-inner{flex-direction:column;text-align:center;}
  .ml-cta-actions{justify-content:center;}
  .ml-cta-icon{margin:0 auto;}
  .footer-body-inner{grid-template-columns:1fr 1fr;gap:2rem 2.5rem;padding:0 1.5rem;}
  .footer-col--brand{grid-column:1/-1;}
  .footer-brand-desc{max-width:100%;}
}
@media(max-width:640px){
  :root{--hh:68px;}
  .logo{padding:4px 14px 4px 8px;}
  .logo-img{height:38px;}
  .page-banner{height:340px;}
  .bt-top{font-size:1.7rem;}
  .bt-bottom{font-size:2.2rem;}
  .banner-stats{gap:1rem;}
  .bstat-icon{width:32px;height:32px;}
  .ml-intro{padding:5rem 0 4rem;}
  .ml-intro-container{padding:0 1.25rem;}
  .ml-img{height:290px;}
  .ml-img-glow{display:none;}
  .ml-details{padding:5rem 0;}
  .mld-container{padding:0 1.25rem;}
  .mld-cards{grid-template-columns:1fr;max-width:440px;margin:0 auto;}
  .mld-card--featured{transform:none;}
  .mld-card--featured.revealed{transform:none;}
  .mld-card--featured:hover{transform:translateY(-10px);}
  .ml-declaration{padding:5rem 0;}
  .mldecl-container{padding:0 1.25rem;}
  .mldecl-right{padding:1.75rem 1.25rem;}
  .ml-cta{padding:3.5rem 0;}
  .ml-cta-inner{padding:0 1.25rem;}
  .footer-body{padding:2.5rem 0 2rem;}
  .footer-body-inner{grid-template-columns:1fr;gap:1.75rem;padding:0 1.25rem;}
  .footer-col--brand{grid-column:auto;}
  .footer-bottom-inner{flex-direction:column;align-items:center;text-align:center;padding:0 1.25rem;}
  .footer-bottom-nav{justify-content:center;}
  .mobile-nav-list{padding:0.75rem 1rem 1.25rem;}
}
@media(max-width:420px){
  .page-banner{height:270px;}
  .bt-top{font-size:1.4rem;}
  .bt-bottom{font-size:1.8rem;}
  .ml-img{height:240px;}
  .ml-chip--top,.ml-chip--bottom{display:none;}
  .ml-img-tag{display:none;}
  .ml-corner{display:none;}
  .banner-shapes{display:none;}
  .footer-bottom-sep{display:none;}
}