/* ═══════════════════════════════════════════════════════════
   SHREE LAMBODAR — LOAN.CSS
   Font: Inter (all weights)
   Theme: #254036 deep green / Gold / Warm Cream
   Aesthetic: Premium Finance · Dark Sections · High Contrast
═══════════════════════════════════════════════════════════ */

: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:        #f4f6f4;
  --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-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.13);
  --sh-lg:  0 24px 72px rgba(30,58,47,0.16);
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --ease-spring:cubic-bezier(0.34,1.56,0.64,1);
  --tr:     all 0.3s 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:500px;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 42%;display:block;animation:kbZoom 20s ease-in-out infinite alternate;}
@keyframes kbZoom{from{transform:scale(1.03);}to{transform:scale(1.10);}}
.banner-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(105deg,rgba(30,58,47,0.90) 0%,rgba(37,64,54,0.65) 50%,rgba(25,48,36,0.40) 100%),
    linear-gradient(to top,rgba(20,40,28,0.70) 0%,transparent 55%);
}
/* Floating finance symbols */
.banner-floats{position:absolute;inset:0;z-index:1;pointer-events:none;overflow:hidden;}
.bf{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--gold-light);opacity:0.06;user-select:none;animation:bfDrift ease-in-out infinite;}
.bf-1{font-size:5rem;top:7%;right:10%;animation-duration:13s;animation-delay:0s;}
.bf-2{font-size:8rem;top:3%;right:3%;animation-duration:17s;animation-delay:2s;}
.bf-3{font-size:4rem;bottom:20%;right:26%;animation-duration:11s;animation-delay:5s;}
.bf-4{font-size:6rem;top:40%;left:4%;animation-duration:15s;animation-delay:1s;}
.bf-5{font-size:3.5rem;bottom:8%;left:18%;animation-duration:9s;animation-delay:4s;}
.bf-6{font-size:5rem;top:58%;right:42%;animation-duration:12s;animation-delay:3s;}
@keyframes bfDrift{0%,100%{transform:translateY(0) rotate(-4deg);}50%{transform:translateY(-15px) rotate(4deg);}}

.banner-content{
  position:relative;z-index:2;
  padding:0 2rem 0 max(2rem,calc((100vw - 1260px)/2 + 2rem));
  max-width:760px;
  display:flex;flex-direction:column;gap:1.1rem;
  animation:slideInLeft 0.9s var(--ease) both;
}
@keyframes slideInLeft{from{opacity:0;transform:translateX(-30px);}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.52);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.7);}

.banner-badge{
  display:inline-flex;align-items:center;gap:7px;
  padding:0.3rem 0.9rem;
  background:rgba(200,168,75,0.15);border:1px solid rgba(200,168,75,0.28);
  border-radius:50px;color:var(--gold-light);
  font-size:0.72rem;font-weight:700;letter-spacing:0.07em;text-transform:uppercase;
  width:fit-content;backdrop-filter:blur(8px);
}

.banner-title{
  font-size:clamp(2.8rem,6.5vw,5rem);
  font-weight:900;color:#fff;line-height:1.05;
  letter-spacing:-0.03em;
  text-shadow:0 4px 28px rgba(0,0,0,0.28);
}
.banner-title-accent{color:var(--gold);display:block;font-style:italic;font-weight:800;}

.banner-rule{
  width:60px;height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius:2px;
  animation:ruleExpand 0.8s 0.5s var(--ease) both;transform-origin:left;
}
@keyframes ruleExpand{from{transform:scaleX(0);}to{transform:scaleX(1);}}

.banner-stats{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;animation:slideInLeft 0.9s 0.2s var(--ease) both;}
.bst{display:flex;flex-direction:column;gap:2px;}
.bst-val{font-size:1.5rem;font-weight:900;color:var(--gold);line-height:1;letter-spacing:-0.02em;}
.bst-lbl{font-size:0.67rem;font-weight:700;color:rgba(255,255,255,0.48);letter-spacing:0.08em;text-transform:uppercase;}
.bst-sep{width:1px;height:34px;background:rgba(255,255,255,0.14);flex-shrink:0;}

/* Wave bottom */
.banner-wave{position:absolute;bottom:-1px;left:0;right:0;z-index:3;line-height:0;}
.banner-wave svg{width:100%;height:60px;display:block;}

/* ═══════════════════════════════════════════════════════════
   INTRO SECTION
═══════════════════════════════════════════════════════════ */
.loan-intro{
  position:relative;padding:7rem 0 6rem;
  background:var(--cream);overflow:hidden;
}
.loan-intro-bg{position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden;}
.lib-orb{position:absolute;border-radius:50%;filter:blur(80px);}
.lib-orb--1{width:480px;height:480px;top:-160px;right:-140px;background:radial-gradient(ellipse,rgba(200,168,75,0.07) 0%,transparent 70%);animation:orbPulse 11s ease-in-out infinite;}
.lib-orb--2{width:380px;height:380px;bottom:-120px;left:-100px;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);}}
.lib-grid{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;}
.lib-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--green);opacity:0.03;user-select:none;animation:symDrift ease-in-out infinite;}
.ls1{font-size:6.5rem;top:5%;left:2%;animation-duration:16s;}
.ls2{font-size:4.5rem;top:20%;right:3%;animation-duration:12s;animation-delay:4s;}
.ls3{font-size:4rem;bottom:16%;left:10%;animation-duration:18s;animation-delay:2s;}
.ls4{font-size:3.5rem;bottom:8%;right:15%;animation-duration:14s;animation-delay:7s;}
.ls5{font-size:5.5rem;top:50%;left:42%;animation-duration:20s;animation-delay:1s;}
@keyframes symDrift{0%,100%{transform:translateY(0px);}50%{transform:translateY(-18px);}}

.loan-intro-inner{
  position:relative;z-index:2;
  max-width:1240px;margin:0 auto;padding:0 2rem;
  display:grid;grid-template-columns:1.05fr 1fr;
  gap:5.5rem;align-items:center;
}

/* Content col */
.li-content{display:flex;flex-direction:column;gap:1.4rem;}
.li-eyebrow{display:flex;align-items:center;gap:8px;font-size:0.7rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;color:var(--green-lt);}
.li-eyebrow-dot{width:7px;height:7px;background:var(--gold);border-radius:50%;animation:dotPulse 2s ease-in-out infinite;flex-shrink:0;}
@keyframes dotPulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(0.7);}}
.li-title{font-size:clamp(2rem,3.5vw,3rem);font-weight:800;color:var(--text-dark);line-height:1.08;letter-spacing:-0.03em;}
.li-title-em{color:var(--green-hero);font-style:italic;font-weight:700;display:block;}
.li-ornament{display:flex;align-items:center;gap:8px;}
.li-orn-line{height:1px;width:50px;background:linear-gradient(to right,var(--gold),transparent);}
.li-orn-line--short{width:25px;}
.li-body{font-size:0.95rem;line-height:1.84;color:var(--text-body);}
.li-body strong{color:var(--green-hero);font-weight:700;}

.li-pills{display:flex;flex-wrap:wrap;gap:0.6rem;margin-top:0.3rem;}
.li-pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:0.4rem 0.85rem;border-radius:50px;
  font-size:0.78rem;font-weight:700;letter-spacing:0.02em;
  transition:transform 0.25s var(--ease-spring),box-shadow 0.25s;
}
.li-pill:hover{transform:translateY(-2px);box-shadow:var(--sh-sm);}
.li-pill--green{background:rgba(37,64,54,0.08);border:1px solid rgba(37,64,54,0.14);color:var(--green-hero);}
.li-pill--gold{background:rgba(200,168,75,0.10);border:1px solid rgba(200,168,75,0.22);color:#8a6820;}

/* Image col */
.li-image-col{position:relative;display:flex;align-items:center;justify-content:center;}
.li-img-backdrop{
  position:absolute;
  inset:16px -16px -16px 16px;
  background:rgba(37,64,54,0.07);
  border-radius:var(--r-lg);z-index:0;
}
.li-img-wrap{
  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.06);
  width:100%;max-width:480px;
  transition:box-shadow 0.4s var(--ease);
  will-change:transform;
}
.li-img-wrap:hover{box-shadow:0 40px 90px rgba(37,64,54,0.24);}
.li-img{width:100%;height:520px;object-fit:cover;display:block;transition:transform 0.6s var(--ease);}
.li-img-wrap:hover .li-img{transform:scale(1.04);}
.li-img-shine{position:absolute;inset:0;background:linear-gradient(120deg,transparent 40%,rgba(255,255,255,0.06) 55%,transparent 70%);pointer-events:none;}

/* Chips on image */
.li-chip{position:absolute;z-index:3;background:var(--white);border-radius:var(--r-md);box-shadow:var(--sh-md);border:1px solid var(--border);}
.li-chip--secure{
  bottom:26px;left:-22px;
  display:flex;align-items:center;gap:10px;
  padding:0.8rem 1.1rem;
  animation:chipFloat 3.4s ease-in-out infinite;
}
.li-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);}
.li-chip-text{display:flex;flex-direction:column;gap:1px;}
.li-chip-top{font-size:0.62rem;font-weight:700;color:var(--text-muted);letter-spacing:0.07em;text-transform:uppercase;}
.li-chip-val{font-size:0.9rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.01em;}
.li-chip--amount{
  top:22px;right:-18px;
  display:flex;flex-direction:column;align-items:center;gap:1px;
  padding:0.9rem 1.1rem;
  background:var(--green-hero);border-color:transparent;
  animation:chipFloat 3.8s 0.7s ease-in-out infinite;
}
.li-chip-lbl{font-size:0.58rem;font-weight:700;color:rgba(255,255,255,0.52);letter-spacing:0.08em;text-transform:uppercase;}
.li-chip-big{font-size:1.25rem;font-weight:900;color:var(--gold);line-height:1;letter-spacing:-0.02em;}
@keyframes chipFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}

.li-corner{position:absolute;width:24px;height:24px;z-index:2;}
.li-corner--tl{top:-3px;left:-3px;border-top:3px solid var(--gold);border-left:3px solid var(--gold);border-radius:4px 0 0 0;}
.li-corner--br{bottom:-3px;right:-3px;border-bottom:3px solid var(--gold);border-right:3px solid var(--gold);border-radius:0 0 4px 0;}

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION HEADING UTILITIES
═══════════════════════════════════════════════════════════ */
.section-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;}
.section-eyebrow--light{color:var(--gold);}
.section-eyebrow--light::before,.section-eyebrow--light::after{content:'';width:26px;height:1.5px;background:var(--gold);opacity:0.5;border-radius:2px;}
.section-eyebrow--dark{color:var(--green-lt);}
.section-eyebrow--dark::before,.section-eyebrow--dark::after{content:'';width:26px;height:1.5px;background:var(--green-lt);opacity:0.6;border-radius:2px;}
.section-title{font-size:clamp(1.9rem,3.2vw,2.8rem);font-weight:800;line-height:1.15;letter-spacing:-0.02em;margin:0.75rem 0 0.5rem;}
.section-title--light{color:#fff;}
.section-title--dark{color:var(--text-dark);}
.section-accent--gold{color:var(--gold);font-style:italic;}
.section-accent--green{color:var(--green-hero);font-style:italic;}
.section-bar{width:50px;height:4px;border-radius:4px;margin-bottom:3rem;}
.section-bar--gold{background:linear-gradient(90deg,var(--gold),var(--gold-light));}
.section-bar--green{background:linear-gradient(90deg,var(--green-hero),var(--gold));}

/* ═══════════════════════════════════════════════════════════
   DETAILS SECTION  (dark green bg)
═══════════════════════════════════════════════════════════ */
.loan-details{
  position:relative;padding:7rem 0 6rem;
  background:var(--green);overflow:hidden;
}
.ld-bg{position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden;}
.ld-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;}
.ld-orb{position:absolute;border-radius:50%;filter:blur(80px);}
.ld-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;}
.ld-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;}
.ld-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--gold);opacity:0.045;user-select:none;animation:symDrift ease-in-out infinite;}
.d1{font-size:7rem;top:5%;left:3%;animation-duration:14s;}
.d2{font-size:5rem;top:24%;right:4%;animation-duration:18s;animation-delay:3s;}
.d3{font-size:4rem;bottom:10%;left:35%;animation-duration:12s;animation-delay:6s;}
.d4{font-size:6rem;bottom:5%;right:18%;animation-duration:16s;animation-delay:2s;}

.ld-container{position:relative;z-index:2;max-width:1240px;margin:0 auto;padding:0 2rem;}
.ld-header{text-align:center;margin-bottom:0;}

.ld-grid-cards{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.4rem;
}
@media(max-width:1080px){.ld-grid-cards{grid-template-columns:repeat(2,1fr);gap:1.2rem;}}
@media(max-width:600px){.ld-grid-cards{grid-template-columns:1fr;max-width:480px;margin:0 auto;}}

.ld-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-lg);padding:2rem 1.6rem;
  display:flex;flex-direction:column;gap:1rem;
  position:relative;overflow:hidden;
  transition:transform 0.38s var(--ease-spring),box-shadow 0.38s,border-color 0.3s;
  opacity:0;transform:translateY(28px);
}
.ld-card.revealed{opacity:1;transform:translateY(0);}
.ld-card:hover{transform:translateY(-10px);box-shadow:0 20px 48px rgba(0,0,0,0.28);border-color:rgba(200,168,75,0.28);}
.ld-card-number{
  position:absolute;top:1rem;right:1.2rem;
  font-size:4rem;font-weight:900;color:#fff;
  opacity:0.05;line-height:1;letter-spacing:-0.04em;
  pointer-events:none;user-select:none;
}
.ld-card-icon{
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:transform 0.25s;
}
.ld-card:hover .ld-card-icon{transform:scale(1.1);}
.ld-card-icon--green{background:rgba(58,122,90,0.20);border:1.5px solid rgba(58,122,90,0.35);color:#7dcba0;}
.ld-card-icon--gold{background:rgba(200,168,75,0.12);border:1.5px solid rgba(200,168,75,0.28);color:var(--gold-light);}
.ld-card-title{font-size:1rem;font-weight:800;color:#fff;letter-spacing:-0.01em;line-height:1.3;}
.ld-card-body{font-size:0.85rem;line-height:1.78;color:rgba(255,255,255,0.62);}
.ld-card-body strong{color:var(--gold-light);font-weight:700;}

/* ═══════════════════════════════════════════════════════════
   DECLARATION + IMAGE SECTION  (warm off-white)
═══════════════════════════════════════════════════════════ */
.loan-declaration{
  position:relative;padding:7rem 0 6rem;
  background:var(--off-white);overflow:hidden;
}
.ldecl-bg{position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden;}
.ldecl-grid{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;}
.ldecl-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--green);opacity:0.03;user-select:none;animation:symDrift 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;}

.ldecl-inner{
  position:relative;z-index:2;
  max-width:1240px;margin:0 auto;padding:0 2rem;
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:start;
}

/* Declaration card */
.ldecl-card{
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:var(--r-xl);
  padding:2.5rem;
  box-shadow:var(--sh-sm);
}
.ldecl-card-header{
  display:flex;align-items:flex-start;gap:1.2rem;
  margin-bottom:2rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid var(--border-lt);
}
.ldecl-shield{
  flex-shrink:0;
  width:58px;height:58px;border-radius:16px;
  background:rgba(37,64,54,0.08);border:1.5px solid rgba(37,64,54,0.14);
  display:flex;align-items:center;justify-content:center;
  color:var(--green-hero);
  animation:shieldGlow 3s ease-in-out infinite;
}
@keyframes shieldGlow{0%,100%{box-shadow:0 0 0 0 rgba(37,64,54,0.2);}50%{box-shadow:0 0 0 8px rgba(37,64,54,0);}}
.ldecl-title{font-size:1.4rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.02em;margin-bottom:0.3rem;}
.ldecl-subtitle{font-size:0.82rem;line-height:1.6;color:var(--text-muted);}
.ldecl-list{display:flex;flex-direction:column;gap:0;}
.ldecl-list li{
  display:flex;align-items:flex-start;gap:0.9rem;
  padding:0.85rem 0;border-bottom:1px solid var(--border-lt);
  font-size:0.88rem;line-height:1.7;color:var(--text-body);
  transition:color 0.2s;
}
.ldecl-list li:last-child{border-bottom:none;}
.ldecl-list li:hover{color:var(--text-dark);}
.ldecl-num{
  flex-shrink:0;min-width:28px;
  font-size:0.75rem;font-weight:900;
  color:var(--green-hero);letter-spacing:0.02em;line-height:1.7;
  font-variant-numeric:tabular-nums;
}

/* Image col with quote */
.ldecl-image-col{position:relative;}
.ldecl-img-wrap{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-md);}
.ldecl-img{width:100%;height:420px;object-fit:cover;display:block;transition:transform 0.6s var(--ease);}
.ldecl-img-wrap:hover .ldecl-img{transform:scale(1.04);}
.ldecl-img-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 40%,rgba(30,58,47,0.75) 100%);pointer-events:none;}

/* Quote card overlapping image */
.ldecl-quote{
  position:relative;
  margin:-90px 1.5rem 0;z-index:2;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:1.8rem;
  box-shadow:var(--sh-md);
}
.ldecl-quote-icon{color:var(--green-hero);opacity:0.15;margin-bottom:0.75rem;}
.ldecl-quote-text{font-size:0.875rem;line-height:1.78;color:var(--text-body);font-style:italic;margin-bottom:1.25rem;}
.ldecl-quote-author{
  display:flex;align-items:center;gap:0.75rem;
  padding-top:1rem;border-top:1px solid var(--border-lt);
}
.ldecl-author-avatar{
  width:40px;height:40px;border-radius:50%;
  background:rgba(37,64,54,0.08);border:1.5px solid rgba(37,64,54,0.14);
  display:flex;align-items:center;justify-content:center;
  color:var(--green-hero);flex-shrink:0;
}
.ldecl-author-info{display:flex;flex-direction:column;gap:2px;}
.ldecl-author-name{font-size:0.85rem;font-weight:800;color:var(--text-dark);letter-spacing:-0.01em;}
.ldecl-author-role{font-size:0.72rem;color:var(--text-muted);line-height:1.4;}

/* ═══════════════════════════════════════════════════════════
   CTA STRIP  (dark green)
═══════════════════════════════════════════════════════════ */
.loan-cta-strip{
  position:relative;padding:4.5rem 0;
  background:var(--green-hero);overflow:hidden;
}
.lcs-bg{position:absolute;inset:0;pointer-events:none;overflow:hidden;}
.lcs-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;}
.lcs-sym{position:absolute;font-family:'Inter',sans-serif;font-weight:900;color:var(--gold);opacity:0.04;user-select:none;animation:symDrift 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;}
.lcs-inner{
  position:relative;z-index:2;
  max-width:1240px;margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;
}
.lcs-text{flex:1;min-width:240px;}
.lcs-title{font-size:clamp(1.4rem,2.5vw,2rem);font-weight:800;color:#fff;letter-spacing:-0.02em;margin-bottom:0.5rem;}
.lcs-sub{font-size:0.9rem;color:rgba(255,255,255,0.55);line-height:1.6;max-width:480px;}
.lcs-actions{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;flex-shrink:0;}
.lcs-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;
}
.lcs-btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(200,168,75,0.45);}
.lcs-btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  padding:0.85rem 1.75rem;
  background:transparent;color:#fff;
  border:2px solid rgba(255,255,255,0.28);
  font-size:0.9rem;font-weight:700;
  border-radius:50px;letter-spacing:0.02em;
  transition:var(--tr-f);white-space:nowrap;
}
.lcs-btn-outline:hover{border-color:rgba(255,255,255,0.6);background:rgba(255,255,255,0.08);transform:translateY(-2px);}

/* ═══════════════════════════════════════════════════════════
   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:symDrift 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){
  .loan-intro-inner{gap:3.5rem;}
  .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:400px;}
  .banner-title{font-size:clamp(2.2rem,7vw,3.5rem);}
  .banner-content{padding-left:2rem;}
  .loan-intro-inner{grid-template-columns:1fr;gap:3.5rem;}
  .li-image-col{max-width:440px;margin:0 auto;width:100%;}
  .li-img{height:380px;}
  .li-chip--secure{left:10px;}
  .li-chip--amount{right:10px;}
  .ldecl-inner{grid-template-columns:1fr;gap:3rem;}
  .ldecl-img{height:340px;}
  .ldecl-quote{margin:-70px 1rem 0;}
  .lcs-inner{flex-direction:column;text-align:center;}
  .lcs-actions{justify-content:center;}
  .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:320px;}
  .banner-title{font-size:clamp(1.9rem,9vw,2.8rem);}
  .loan-intro{padding:5rem 0 4rem;}
  .loan-intro-inner{padding:0 1.25rem;}
  .li-img{height:290px;}
  .li-img-backdrop{display:none;}
  .loan-details{padding:5rem 0;}
  .ld-container{padding:0 1.25rem;}
  .loan-declaration{padding:5rem 0;}
  .ldecl-inner{padding:0 1.25rem;}
  .ldecl-card{padding:1.75rem 1.25rem;}
  .ldecl-img{height:270px;}
  .ldecl-quote{margin:-50px 0.75rem 0;padding:1.4rem;}
  .loan-cta-strip{padding:3.5rem 0;}
  .lcs-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:260px;}
  .banner-title{font-size:1.8rem;}
  .li-img{height:240px;}
  .li-chip--amount,.li-chip--secure{display:none;}
  .li-corner{display:none;}
  .ldecl-img{height:220px;}
  .footer-bottom-sep{display:none;}
}