/* ============================================================
   gold.css — Gold Loan Scheme
   Shree Lambodar Credit & Supply Co-op Society
   Theme: #1e3a2f (Deep Forest Green) + White + Gold Accent
   ============================================================ */

:root {
  --green-dark:      #1e3a2f;
  --green-mid:       #2a5240;
  --green-light:     #3a7a5a;
  --gold:            #c8a84b;
  --gold-light:      #e8c76a;
  --gold-pale:       #f5e9c8;
  --white:           #ffffff;
  --off-white:       #f8faf9;
  --text-primary:    #1a2e25;
  --text-body:       #3d5a4a;
  --text-muted:      #6b8c7a;
  --border:          rgba(30,58,47,0.10);
  --header-h:        80px;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --shadow-sm:       0 2px 12px rgba(30,58,47,0.08);
  --shadow-md:       0 8px 32px rgba(30,58,47,0.14);
  --shadow-lg:       0 20px 60px rgba(30,58,47,0.18);
  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.18s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
strong { font-weight: 700; color: var(--green-dark); }

/* ═══════════════════════════════════════════════════════════
   HEADER — always dark green (banner is dark so bars are
   always white and visible; same behaviour as scrolled state)
═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: white;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(30,58,47,0.30);
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: auto;
  background: rgba(255,255,255,0.96);
  padding: 6px 20px 6px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.20);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
  text-decoration: none;
}
.logo:hover { background: #ffffff; box-shadow: 0 4px 24px rgba(0,0,0,0.26); transform: translateY(-1px); }
.logo-img { height: 50px; width: auto; object-fit: contain; display: block; }

/* Desktop nav */
.nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem; font-weight: 500;
  color: black;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover,
.nav-item--active > .nav-link { color: var(--gold-light); background: rgba(255,255,255,0.07); }

.chevron { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.25s ease; flex-shrink: 0; }
.nav-item.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown — white panel */
.dropdown {
  position: absolute;
  top: calc(100% + 12px); left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  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 rgba(30,58,47,0.06); }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 0.85rem 1.1rem;
  font-size: 0.86rem; font-weight: 500; color: var(--text-body);
  transition: var(--transition-fast); line-height: 1.4;
}
.dropdown-link:hover { color: var(--green-dark); background: var(--off-white); }
.chevron-right { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s, transform 0.2s; }
.dropdown-item.has-subdropdown:hover .chevron-right { opacity: 1; transform: translateX(3px); }

/* Sub-dropdown */
.subdropdown {
  position: absolute; left: 100%; top: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, 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 rgba(30,58,47,0.06); }
.subdropdown li:last-child { border-bottom: none; }
.subdropdown-link {
  display: flex; align-items: center;
  padding: 0.8rem 1.1rem;
  font-size: 0.84rem; font-weight: 400; color: var(--text-body);
  transition: var(--transition-fast); 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-dark); background: var(--off-white); padding-left: 1.3rem; }
.subdropdown-link:hover::before { opacity: 1; }
.subdropdown-link--active { color: var(--green-dark) !important; font-weight: 600; }
.subdropdown-link--active::before { opacity: 1 !important; }

/* CTA pill */
.header-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.25rem;
  background: var(--gold); color: var(--green-dark);
  font-size: 0.875rem; font-weight: 700;
  border-radius: 50px; letter-spacing: 0.02em;
  transition: var(--transition-fast); white-space: nowrap;
  text-decoration: none;
}
.header-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,168,75,0.4); }

/* ── Hamburger — white bars, always visible on dark header ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.10); }

.ham-bar {
  display: block;
  width: 24px; height: 2px;
  background: #ffffff;           /* always white — dark header on gold page */
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.4,0,0.2,1),
    opacity   0.25s ease,
    width     0.3s ease;
  transform-origin: center;
}

/* X animation — triggered by .active class (set by JS) */
.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 — dark green ───────────────────────────────── */
.mobile-nav {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: rgba(20,44,35,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  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.88);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-decoration: none;
}
.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.88);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast); text-align: left;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.mobile-sub-btn { font-size: 0.875rem; color: rgba(255,255,255,0.70); 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 cubic-bezier(0.4,0,0.2,1); }
.mobile-accordion-list.open { max-height: 600px; }

.mobile-sub-link {
  display: flex; align-items: center; gap: 8px;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  font-size: 0.85rem; font-weight: 400;
  color: rgba(255,255,255,0.60);
  transition: var(--transition-fast);
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.mobile-sub-link::before { content: '›'; color: var(--gold); font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.mobile-sub-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.05); }
.mobile-sub-link--active { color: var(--gold-light) !important; font-weight: 600; }

.mobile-cta {
  display: block; margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--gold); color: var(--green-dark);
  font-weight: 700; border-radius: 50px;
  text-align: center; font-size: 0.95rem;
  transition: var(--transition-fast); text-decoration: none;
}
.mobile-cta:hover { background: var(--gold-light); }

/* ── Header Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .header-cta { display: none; }
  .nav-list { gap: 0; }
  .nav-link { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .header-container { gap: 1rem; }
}
@media (max-width: 480px) {
  :root { --header-h: 68px; }
  .logo { padding: 4px 14px 4px 8px; }
  .logo-img { height: 38px; }
  .mobile-nav-list { padding: 0.75rem 1rem 1.25rem; }
}
@media (max-width: 360px) { .logo-img { height: 34px; } }

/* ═══════════════════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════════════════ */
.gl-banner {
  position: relative;
  padding-top: var(--header-h);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.gl-banner-img-wrap { position: absolute; inset: 0; z-index: 0; }
.gl-banner-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.gl-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,58,47,0.92) 0%, rgba(26,46,37,0.82) 50%, rgba(30,58,47,0.88) 100%);
}

/* Art-deco geometric decorations */
.gl-banner-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.gbd-line {
  position: absolute; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,75,0.18), transparent);
}
.gbd-line--1 { width: 70%; top: 28%; left: -5%; transform: rotate(-4deg); }
.gbd-line--2 { width: 55%; top: 52%; left: 15%; transform: rotate(-4deg); }
.gbd-line--3 { width: 40%; top: 72%; left: 30%; transform: rotate(-4deg); }

.gbd-corner { position: absolute; width: 50px; height: 50px; }
.gbd-corner--tl { top: 90px;     left: 20px;  border-top: 1px solid rgba(200,168,75,0.35); border-left:  1px solid rgba(200,168,75,0.35); }
.gbd-corner--tr { top: 90px;     right: 20px; border-top: 1px solid rgba(200,168,75,0.35); border-right: 1px solid rgba(200,168,75,0.35); }
.gbd-corner--bl { bottom: 100px; left: 20px;  border-bottom: 1px solid rgba(200,168,75,0.35); border-left:  1px solid rgba(200,168,75,0.35); }
.gbd-corner--br { bottom: 100px; right: 20px; border-bottom: 1px solid rgba(200,168,75,0.35); border-right: 1px solid rgba(200,168,75,0.35); }

.gbd-diamond { position: absolute; background: rgba(200,168,75,0.18); transform: rotate(45deg); }
.gbd-diamond--1 { width: 10px; height: 10px; top: 22%; right: 15%; }
.gbd-diamond--2 { width: 6px;  height: 6px;  top: 65%; left: 8%; }
.gbd-diamond--3 { width: 8px;  height: 8px;  bottom: 25%; right: 30%; }

/* Floating particles */
.gl-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.gp { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,75,0.55) 0%, transparent 70%); animation: glParticle 6s ease-in-out infinite; }
.gp-1 { width:3px; height:3px; top:20%; left:10%;  animation-delay:0s;   animation-duration:5s; }
.gp-2 { width:4px; height:4px; top:45%; left:25%;  animation-delay:.8s;  animation-duration:7s; }
.gp-3 { width:2px; height:2px; top:70%; left:60%;  animation-delay:1.5s; animation-duration:6s; }
.gp-4 { width:3px; height:3px; top:30%; left:80%;  animation-delay:2.2s; animation-duration:8s; }
.gp-5 { width:5px; height:5px; top:60%; left:90%;  animation-delay:.4s;  animation-duration:5s; }
.gp-6 { width:2px; height:2px; top:15%; left:50%;  animation-delay:3s;   animation-duration:9s; }
.gp-7 { width:4px; height:4px; top:80%; left:35%;  animation-delay:1.8s; animation-duration:6s; }
.gp-8 { width:3px; height:3px; top:50%; left:70%;  animation-delay:2.8s; animation-duration:7s; }
@keyframes glParticle {
  0%,100% { transform: translateY(0) scale(1);       opacity: .6; }
  50%      { transform: translateY(-20px) scale(1.4); opacity: 1;  }
}

/* Banner content */
.gl-banner-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 4.5rem 2rem 5.5rem; width: 100%;
}

.gl-breadcrumb { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 1.75rem; }
.gl-bc-link { font-size: 0.78rem; color: rgba(200,168,75,0.6); transition: color var(--transition); }
.gl-bc-link:hover { color: var(--gold-light); }
.gl-bc-sep { font-size: 0.5rem; color: rgba(200,168,75,0.3); }
.gl-bc-current { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

.gl-banner-eyebrow { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.gl-eyebrow-line { flex: 0 0 40px; height: 1.5px; background: linear-gradient(90deg, transparent, rgba(200,168,75,0.6)); }
.gl-eyebrow-line:last-child { background: linear-gradient(90deg, rgba(200,168,75,0.6), transparent); }
.gl-eyebrow-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

.gl-banner-title { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 1rem; }
.gl-title-top  { font-size: clamp(2.8rem,7vw,5rem); font-weight: 800; font-style: italic; color: var(--gold-light); line-height: 1; letter-spacing: -0.02em; }
.gl-title-main { font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 900; color: #ffffff; line-height: 1.05; letter-spacing: -0.03em; }
.gl-title-main em { font-style: italic; color: var(--gold); }

.gl-banner-sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; max-width: 480px; }

.gl-banner-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.gl-stat { padding: 0.6rem 1.5rem 0; }
.gl-stat:first-child { padding-left: 0; }
.gl-stat-val   { display: block; font-size: 1.55rem; font-weight: 800; color: var(--gold-light); line-height: 1.1; letter-spacing: -0.02em; }
.gl-stat-label { display: block; font-size: 0.72rem; color: rgba(200,168,75,0.55); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }
.gl-stat-sep   { width: 1px; height: 40px; background: rgba(200,168,75,0.2); flex-shrink: 0; }

.gl-banner-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0; }
.gl-banner-wave svg { width: 100%; height: 80px; display: block; }

/* ═══════════════════════════════════════════════════════════
   INTRO SECTION
═══════════════════════════════════════════════════════════ */
.gl-intro { position: relative; background: var(--white); padding: 6rem 0; overflow: hidden; }

.gl-intro-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.gib-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(30,58,47,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(30,58,47,0.04) 1px,transparent 1px);
  background-size: 60px 60px;
}
.gib-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.gib-orb--a { width:600px; height:600px; background: radial-gradient(circle,rgba(30,58,47,0.06) 0%,transparent 70%); top:-150px; right:-150px; }
.gib-orb--b { width:400px; height:400px; background: radial-gradient(circle,rgba(200,168,75,0.05) 0%,transparent 70%); bottom:-100px; left:-80px; }
.gib-line { position: absolute; height:1px; background: linear-gradient(90deg,transparent,rgba(30,58,47,0.06),transparent); }
.gib-line--1 { width:80%; top:35%; left:-10%; transform:rotate(-3deg); }
.gib-line--2 { width:60%; bottom:30%; left:20%; transform:rotate(-3deg); }

.gl-intro-container {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

/* Hero image */
.gl-intro-img-col { position: relative; }
.gl-img-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(30,58,47,0.08);
}
.gl-img-border-outer { position: absolute; inset: 0; border: 1px solid rgba(30,58,47,0.12); border-radius: var(--radius-lg); z-index: 2; pointer-events: none; }
.gl-img-border-inner { position: absolute; inset: 8px; border: 1px solid rgba(200,168,75,0.08); border-radius: calc(var(--radius-lg) - 4px); z-index: 2; pointer-events: none; }
.gl-hero-img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease; }
.gl-img-frame:hover .gl-hero-img { transform: scale(1.04); }
.gl-img-sheen { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(30,58,47,0.04) 0%,transparent 50%,rgba(0,0,0,0.1) 100%); z-index: 1; pointer-events: none; }

.gl-img-ornament { position: absolute; width: 28px; height: 28px; z-index: 3; }
.gl-io--tl { top:-6px;    left:-6px;   border-top: 2px solid var(--gold); border-left:   2px solid var(--gold); }
.gl-io--tr { top:-6px;    right:-6px;  border-top: 2px solid var(--gold); border-right:  2px solid var(--gold); }
.gl-io--bl { bottom:-6px; left:-6px;   border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.gl-io--br { bottom:-6px; right:-6px;  border-bottom: 2px solid var(--gold); border-right:2px solid var(--gold); }

.gl-badge {
  position: absolute; z-index: 10;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; box-shadow: var(--shadow-md);
  font-size: 0.8rem; font-weight: 700; color: var(--green-dark);
  animation: badgeFloat 4s ease-in-out infinite;
  text-decoration: none;
}
.gl-badge svg { color: var(--gold); }
.gl-badge--instant { top:-18px; right:-16px; }
.gl-badge--safe    { bottom:-18px; left:-16px; animation-delay: 2s; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Content column */
.gl-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 1.25rem;
}
.gl-section-label::before,
.gl-section-label::after { content: ''; width: 28px; height: 1.5px; background: var(--green-light); border-radius: 2px; opacity: 0.6; }

.gl-intro-title { font-size: clamp(2.2rem,3.5vw,3.2rem); font-weight: 900; line-height: 1.1; color: var(--text-primary); letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.gl-intro-accent { color: var(--green-dark); }

.gl-title-rule { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.75rem; }
.gtr-bar { height: 4px; width: 50px; background: linear-gradient(90deg,var(--green-dark),var(--gold)); border-radius: 4px; }
.gtr-bar--short { width: 24px; }

.gl-body-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.1rem; }

.gl-highlights { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 2rem; }
.gl-highlight {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-md); transition: var(--transition);
}
.gl-highlight:hover { background: #edf4ef; border-color: rgba(30,58,47,0.2); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.gl-hl-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(30,58,47,0.07); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); transition: background 0.25s ease, transform 0.25s ease;
}
.gl-highlight:hover .gl-hl-icon { background: rgba(30,58,47,0.12); transform: scale(1.08); }
.gl-hl-text { display: flex; flex-direction: column; gap: 0.15rem; }
.gl-hl-title { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.gl-hl-desc  { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════════════════════════ */
.gl-benefits { position: relative; background: #f5f8f6; padding: 7rem 0; overflow: hidden; }

.gl-benefits-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.gbb-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(30,58,47,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(30,58,47,0.03) 1px,transparent 1px);
  background-size: 60px 60px;
}
.gbb-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.gbb-orb--1 { width:700px; height:700px; background: radial-gradient(circle,rgba(30,58,47,0.05) 0%,transparent 70%); top:-200px; right:-200px; }
.gbb-orb--2 { width:500px; height:500px; background: radial-gradient(circle,rgba(200,168,75,0.05) 0%,transparent 70%); bottom:-150px; left:-100px; }
.gbb-deco-line { position: absolute; height:1px; background: linear-gradient(90deg,transparent,rgba(30,58,47,0.06),transparent); }
.gbb-dl--1 { width:80%; top:20%; left:-10%; transform:rotate(-4deg); }
.gbb-dl--2 { width:60%; bottom:25%; right:-10%; transform:rotate(-4deg); }

.gl-benefits-container { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.gl-benefits-header { text-align: center; margin-bottom: 4rem; }

.glbh-ornament { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 1rem; }
.glbh-ornament--bottom { margin-bottom: 0; margin-top: 1.5rem; }
.glbh-line { height: 1.5px; width: 60px; background: var(--green-light); opacity: 0.5; border-radius: 2px; }
.glbh-line--short { width: 30px; }

.gl-eyebrow-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 0.85rem;
}
.gl-eyebrow-tag::before,
.gl-eyebrow-tag::after { content: ''; width: 30px; height: 1.5px; background: var(--green-light); opacity: 0.55; border-radius: 2px; }

.gl-benefits-title { font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; line-height: 1.15; color: var(--text-primary); letter-spacing: -0.03em; }
.gl-benefits-title em { font-style: italic; color: var(--green-dark); }
.gl-benefits-sub { margin-top: 1rem; font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Benefits grid */
.gl-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.gl-benefit-card {
  position: relative;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), box-shadow 0.38s ease, border-color 0.25s ease;
  cursor: default;
  box-shadow: 0 4px 24px rgba(30,58,47,0.07);
}
.gl-benefit-card:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(30,58,47,0.14); border-color: rgba(200,168,75,0.45); }
.gl-bc--featured { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-6px); box-shadow: 0 18px 48px rgba(30,58,47,0.28); }
.gl-bc--featured:hover { transform: translateY(-14px); box-shadow: 0 28px 60px rgba(30,58,47,0.35); }
.gl-bc--wide { grid-column: span 3; display: flex; align-items: flex-start; gap: 2rem; }
.gl-bc--wide .glbc-content { flex: 1; }
.gl-bc--wide .glbc-number  { position: static; font-size: 2.5rem; flex-shrink: 0; margin-top: 0.25rem; }
.gl-bc--wide .glbc-icon-wrap { flex-shrink: 0; }

.glbc-glow { position: absolute; top:-30px; right:-30px; width:120px; height:120px; background: radial-gradient(circle,rgba(200,168,75,0.12) 0%,transparent 70%); pointer-events: none; border-radius: 50%; transition: left 0.05s, top 0.05s; }
.glbc-glow--wide { width:200px; height:200px; top:-50px; right:-50px; }

.glbc-number { position: absolute; top:1rem; right:1.5rem; font-size:3.5rem; font-weight:900; color:rgba(30,58,47,0.05); line-height:1; pointer-events:none; user-select:none; }
.gl-bc--featured .glbc-number { color: rgba(255,255,255,0.06); }

.glbc-icon-wrap { width:52px; height:52px; background:rgba(30,58,47,0.07); border:1px solid var(--border); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; color:var(--green-dark); margin-bottom:1.25rem; transition:var(--transition); }
.gl-benefit-card:hover .glbc-icon-wrap { background: rgba(30,58,47,0.12); border-color: rgba(30,58,47,0.2); }
.gl-bc--featured .glbc-icon-wrap { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.15); color:var(--gold-light); }
.gl-bc--featured:hover .glbc-icon-wrap { background:rgba(255,255,255,0.18); }

.glbc-title { font-size:1.05rem; font-weight:800; color:var(--text-primary); margin-bottom:0.65rem; letter-spacing:-0.01em; }
.gl-bc--featured .glbc-title { color:#ffffff; }
.glbc-desc { font-size:0.875rem; color:var(--text-body); line-height:1.75; }
.gl-bc--featured .glbc-desc { color:rgba(255,255,255,0.72); }

.glbc-rule { width:32px; height:4px; background:linear-gradient(90deg,var(--green-dark),var(--gold)); border-radius:4px; margin-top:1.25rem; }
.gl-bc--featured .glbc-rule { background:linear-gradient(90deg,var(--gold),var(--gold-light)); }
.glbc-rule--wide { margin-top:0; width:40px; }

.glbc-safe-badge {
  flex-shrink:0; align-self:flex-end;
  display:flex; align-items:center; gap:0.4rem;
  padding:0.4rem 0.9rem;
  background:rgba(200,168,75,0.12); border:1px solid rgba(200,168,75,0.3);
  border-radius:50px; font-size:0.75rem; font-weight:700; color:#8a6a1a;
}

/* ═══════════════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════════════ */
.gl-stats-band { position:relative; background:var(--green-dark); padding:3rem 0; overflow:hidden; }
.gl-stats-bg { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.gsb-shimmer { position:absolute; inset:0; background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.06) 50%,transparent 60%); animation:shimmerBand 3.5s ease-in-out infinite; }
@keyframes shimmerBand { 0% { transform:translateX(-100%); } 100% { transform:translateX(200%); } }

.gl-stats-inner { position:relative; z-index:1; max-width:1320px; margin:0 auto; padding:0 2rem; display:flex; align-items:center; justify-content:center; flex-wrap:wrap; }
.gl-stats-item { display:flex; flex-direction:column; align-items:center; padding:0 3rem; text-align:center; }
.gl-stats-val   { font-size:2rem; font-weight:900; color:var(--gold-light); line-height:1.1; letter-spacing:-0.02em; }
.gl-stats-label { font-size:0.72rem; font-weight:600; color:rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:0.1em; margin-top:0.3rem; }
.gl-stats-sep   { width:1px; height:40px; background:rgba(255,255,255,0.12); flex-shrink:0; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.gl-cta { position:relative; background:var(--white); padding:6rem 0; overflow:hidden; }
.gl-cta-bg { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.gcta-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(30,58,47,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(30,58,47,0.04) 1px,transparent 1px); background-size:60px 60px; }
.gcta-orb { position:absolute; top:-100px; left:50%; transform:translateX(-50%); width:600px; height:400px; background:radial-gradient(ellipse,rgba(30,58,47,0.05) 0%,transparent 70%); border-radius:50%; filter:blur(40px); }
.gcta-deco-line { position:absolute; height:1px; background:linear-gradient(90deg,transparent,rgba(30,58,47,0.07),transparent); }
.gcta-dl--1 { width:100%; top:20%; }
.gcta-dl--2 { width:100%; bottom:20%; }

.gl-cta-inner { position:relative; z-index:1; max-width:640px; margin:0 auto; padding:0 2rem; text-align:center; }
.gl-cta-ornament { display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:1.5rem; }
.gcta-line { height:1.5px; width:50px; background:var(--green-light); opacity:0.5; border-radius:2px; }

.gl-cta-title { font-size:clamp(1.8rem,3vw,2.6rem); font-weight:900; line-height:1.2; color:var(--text-primary); letter-spacing:-0.03em; margin-bottom:1rem; }
.gl-cta-title em { font-style:italic; color:var(--green-dark); }
.gl-cta-sub { font-size:0.95rem; color:var(--text-muted); line-height:1.75; margin-bottom:2.5rem; }

.gl-cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.gl-cta-btn {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.9rem 2rem; font-size:0.9rem; font-weight:700;
  border-radius:50px; transition:var(--transition); white-space:nowrap;
  text-decoration:none;
}
.gl-cta-btn--primary { background:var(--green-dark); color:var(--white); box-shadow:0 4px 20px rgba(30,58,47,0.25); }
.gl-cta-btn--primary:hover { background:var(--gold); color:var(--green-dark); transform:translateY(-2px); box-shadow:0 8px 30px rgba(30,58,47,0.35); }
.gl-cta-btn--ghost { background:transparent; border:2px solid var(--green-dark); color:var(--green-dark); }
.gl-cta-btn--ghost:hover { background:var(--green-dark); color:var(--white); transform:translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { position:relative; background:var(--green-dark); 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:footerOrbFloat 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:footerOrbFloat 22s ease-in-out infinite reverse; }
@keyframes footerOrbFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-24px); } }
.footer-bg-icon { position:absolute; font-weight:900; color:var(--gold); opacity:0.04; user-select:none; animation:footerBgFloat ease-in-out infinite; }
.fbi-1 { font-size:8rem; top:6%;    left:3%;   animation-duration:15s; animation-delay:0s; }
.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; }
@keyframes footerBgFloat { 0%,100% { transform:translateY(0px); } 50% { transform:translateY(-16px); } }

.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:1320px; 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(--transition); text-decoration:none; }
.footer-logo-wrap:hover { background:#ffffff; 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:var(--transition); }
.footer-social-btn:hover { background:var(--gold); border-color:var(--gold); color:var(--green-dark); 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:#ffffff; 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; }
.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 ease,gap 0.2s ease; 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 ease,transform 0.2s ease; }
.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); }
.footer-link--active svg { opacity:1; }

.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; color:rgba(255,255,255,0.65); line-height:1.6; display:block; }
.footer-contact-link { text-decoration:none; transition:color 0.18s ease; }
.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:var(--radius-md); }
.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.18); }
.footer-bottom-inner { max-width:1320px; 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.32); 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.38); text-decoration:none; transition:color 0.18s ease; white-space:nowrap; }
.footer-bottom-link:hover { color:var(--gold-light); }
/* ── Footer bottom separator — thin dot line (matches personal.css) ── */
.footer-bottom-sep { display:block; width:1px; height:12px; background:rgba(255,255,255,0.16); flex-shrink:0; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal       { opacity:0; transform:translateY(32px);  transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width:1100px) {
  .gl-benefits-grid { grid-template-columns:repeat(2,1fr); }
  .gl-bc--wide { grid-column:span 2; flex-wrap:wrap; gap:1.25rem; }
  .gl-bc--wide .glbc-number { position:absolute; top:1rem; right:1.5rem; }
}
@media (max-width:1024px) {
  .gl-intro-container { grid-template-columns:1fr; gap:3rem; }
  .gl-intro-img-col { max-width:500px; margin:0 auto; width:100%; }
  .gl-img-frame { aspect-ratio:4/3; }
  .footer-body-inner { grid-template-columns:1fr 1fr; }
  .footer-col--brand { grid-column:span 2; }
  .footer-brand-desc { max-width:100%; }
}
@media (max-width:900px) {
  .gl-stats-inner { gap:0; }
  .gl-stats-item { padding:0 1.5rem; }
}
@media (max-width:768px) {
  .gl-banner { min-height:440px; }
  .gl-banner-content { padding:3rem 1.25rem 4rem; }
  .gl-title-top { font-size:2.6rem; }
  .gl-title-main { font-size:1.9rem; }
  .gbd-corner--tl,.gbd-corner--tr,.gbd-corner--bl,.gbd-corner--br { display:none; }
  .gl-intro { padding:4rem 0; }
  .gl-intro-container { padding:0 1.25rem; }
  .gl-benefits { padding:5rem 0; }
  .gl-benefits-container { padding:0 1.25rem; }
  .gl-benefits-grid { grid-template-columns:1fr; gap:1rem; }
  .gl-bc--wide { grid-column:span 1; }
  .gl-bc--wide .glbc-number { position:absolute; }
  .gl-stats-inner { flex-wrap:wrap; gap:1.5rem; justify-content:center; }
  .gl-stats-sep { display:none; }
  .gl-stats-item { padding:0 1.5rem; }
  .gl-cta { padding:4rem 0; }
  .gl-cta-inner { padding:0 1.25rem; }
  .gl-cta-actions { flex-direction:column; align-items:center; }
  .gl-cta-btn { width:100%; justify-content:center; max-width:320px; }
  .footer-body-inner { grid-template-columns:1fr; padding:2.5rem 1.25rem; }
  .footer-col--brand { grid-column:span 1; }
  .footer-bottom-inner { flex-direction:column; text-align:center; padding:1rem 1.25rem; }
  .footer-bottom-nav { justify-content:center; }
}
@media (max-width:480px) {
  .gl-banner-stats { flex-direction:column; align-items:flex-start; gap:0.75rem; }
  .gl-stat-sep { display:none; }
  .gl-stat { padding:0; }
  .gl-title-top { font-size:2rem; }
  .gl-title-main { font-size:1.6rem; }
  .gl-badge--instant { top:-12px; right:-8px; }
  .gl-badge--safe    { bottom:-12px; left:-8px; }
  .gl-cta-btn { max-width:100%; }
}