/* ============================================================
   personal.css — Personal Loan Scheme
   Shree Lambodar Credit & Supply Co-op Society
   Palette: Deep Forest Green #1e3a2f | Gold #c9a84c | Cream #fdfaf5
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green-deep:   #1e3a2f;
  --green-mid:    #2a5240;
  --green-light:  #3a6b52;
  --green-pale:   #e8f0eb;
  --gold:         #c9a84c;
  --gold-light:   #e2c97e;
  --gold-dark:    #a07c2e;
  --cream:        #fdfaf5;
  --cream-warm:   #f5efe2;
  --white:        #ffffff;
  --off-white:    #f8faf9;
  --text-dark:    #1a2e24;
  --text-mid:     #3d5949;
  --text-light:   #6b8c7a;
  --text-body:    #3d5949;
  --text-muted:   #6b8c7a;
  --border:       rgba(201,168,76,.25);
  --border-green: rgba(42,82,64,.15);

  --shadow-sm:    0 2px 12px rgba(30,58,47,.08);
  --shadow-md:    0 8px 32px rgba(30,58,47,.14);
  --shadow-lg:    0 20px 60px rgba(30,58,47,.18);
  --shadow-gold:  0 8px 32px rgba(201,168,76,.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --header-h: 80px;

  --transition:      .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: .18s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);

  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
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; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */

/* ── Shell ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  /* Start transparent so the banner image shows through */
  background: white;
  transition: var(--transition);
}

/* Scrolled state — dark green frosted glass */
.header.scrolled {
  background: rgba(30, 58, 47, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(30, 58, 47, 0.25);
}
.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.92);
}
.header.scrolled .nav-link:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
}
/* Keep Services parent highlighted in scrolled state */
.header.scrolled .nav-item--services-active > .nav-link {
  color: var(--gold-light);
}

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

/* ── Logo — white pill ─────────────────────────────────────── */
.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;
  transition: var(--transition);
}

/* ── 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;
  /* White text on the transparent dark-banner background */
  color: black;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

/* Services "active" parent — gold tint */
.nav-item--services-active > .nav-link {
  color: var(--gold-light);
}

/* Chevrons */
.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 panel — WHITE ────────────────────────────────── */
.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 rgba(30,58,47,0.1);
  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 rgba(30,58,47,0.1);
  border-top:  1px solid rgba(30,58,47,0.1);
  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-deep);
  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 — WHITE ──────────────────────────────────── */
.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 rgba(30,58,47,0.1);
  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-deep);
  background: var(--off-white);
  padding-left: 1.3rem;
}
.subdropdown-link:hover::before { opacity: 1; }

/* Active page highlight in subdropdown */
.subdropdown-link--active {
  color: var(--gold-dark) !important;
  font-weight: 600;
}
.subdropdown-link--active::before {
  opacity: 1 !important;
  background: var(--gold) !important;
}

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

/* ── Hamburger ─────────────────────────────────────────────── */
.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.12);
}

/* ─── FIX: bars are always white — visible on both
         transparent (dark banner) and scrolled (dark green) states ─── */
.ham-bar {
  display: block;
  width: 24px; height: 2px;
  background: #ffffff;            /* always white — readable on both dark states */
  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 state when menu is open */
.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);
}

/* Active page in mobile nav */
.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-deep);
  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
═══════════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  padding-top: var(--header-h);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,58,47,.88) 0%,
    rgba(30,58,47,.72) 50%,
    rgba(20,40,30,.80) 100%
  );
}

.banner-floats { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pf {
  position: absolute;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(201,168,76,.12);
  animation: floatSym 8s ease-in-out infinite;
}
.pf-1 { top: 15%; left: 5%;  animation-delay: 0s;   font-size: 3.5rem; }
.pf-2 { top: 65%; left: 12%; animation-delay: 1.2s; font-size: 2rem; }
.pf-3 { top: 30%; left: 88%; animation-delay: 2.5s; font-size: 2.8rem; }
.pf-4 { top: 72%; left: 80%; animation-delay: .8s;  font-size: 1.8rem; }
.pf-5 { top: 20%; left: 55%; animation-delay: 3s;   font-size: 2.2rem; }
.pf-6 { top: 80%; left: 45%; animation-delay: 1.8s; font-size: 1.6rem; }
.pf-7 { top: 50%; left: 70%; animation-delay: 2s;   font-size: 3rem; }
@keyframes floatSym {
  0%,100% { transform: translateY(0) rotate(0deg);    opacity: .7; }
  50%      { transform: translateY(-18px) rotate(8deg); opacity: 1; }
}

.banner-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bl {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.18), transparent);
  transform-origin: left center;
}
.bl-1 { width: 60%; top: 30%; left: -5%; transform: rotate(-8deg); }
.bl-2 { width: 50%; top: 55%; left: 20%; transform: rotate(-8deg); }
.bl-3 { width: 40%; top: 75%; left: 40%; transform: rotate(-8deg); }

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  width: 100%;
}

.banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.bc-link {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.bc-link:hover { color: var(--gold-light); }
.bc-current {
  font-size: .8rem;
  color: var(--gold-light);
  font-weight: 500;
}

.banner-tag-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .85rem;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
}
.banner-tag--outline {
  background: transparent;
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.banner-title-line2 {
  display: block;
  color: var(--gold-light);
}
.banner-title-line2 em {
  font-style: italic;
  color: var(--white);
}

.banner-divider {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1.5rem 0;
}
.bd-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.bd-diamond--sm { width: 5px; height: 5px; }
.bd-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.banner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.banner-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  backdrop-filter: blur(6px);
}

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

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

.pl-intro-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pib-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,58,47,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,47,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.pib-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.pib-orb--a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,58,47,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.pib-orb--b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.pib-sym {
  position: absolute;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(30,58,47,.04);
  user-select: none;
}
.ps1 { top: 5%;  right: 3%; }
.ps2 { top: 40%; left: 2%;  font-size: 4rem; }
.ps3 { bottom: 10%; right: 8%; font-size: 4.5rem; }
.ps4 { bottom: 5%;  left: 15%; font-size: 3rem; }
.ps5 { top: 60%;  right: 20%; font-size: 3.5rem; }

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

.pl-section-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.25rem;
}
.pl-label-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.pl-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  max-width: 60px;
}

.pl-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.pl-intro-accent {
  color: var(--green-mid);
  position: relative;
  display: inline-block;
}
.pl-intro-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.pl-title-decor {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.75rem;
}
.pltd-fill {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.pltd-outline {
  width: 20px; height: 3px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
}
.pltd-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.pl-body {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.pl-body strong { color: var(--text-dark); }
.pl-body:last-of-type { margin-bottom: 0; }

.pl-advantages {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.pl-adv {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 160px;
  transition: var(--transition);
}
.pl-adv:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.pl-adv-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pl-adv-icon--green { background: rgba(30,58,47,.1);  color: var(--green-mid); }
.pl-adv-icon--gold  { background: rgba(201,168,76,.12); color: var(--gold-dark); }
.pl-adv-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .15rem;
}
.pl-adv-desc { font-size: .75rem; color: var(--text-light); }

.pl-image-col { position: relative; }
.pl-img-shadow-block {
  position: absolute;
  inset: 16px -8px -8px 8px;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  opacity: .12;
}
.pl-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.pl-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.pl-img-wrap:hover .pl-img { transform: scale(1.03); }
.pl-img-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(30,58,47,.3) 100%);
}

.pl-float-chip {
  position: absolute;
  z-index: 10;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-green);
  animation: chipFloat 4s ease-in-out infinite;
}
.pl-float-chip--a {
  top: -20px; right: -20px;
  padding: .75rem 1rem;
}
.pfca-inner { display: flex; align-items: center; gap: .65rem; color: var(--green-mid); }
.pfca-text  { display: flex; flex-direction: column; }
.pfca-label { font-size: .68rem; color: var(--text-light); font-weight: 500; }
.pfca-val   { font-size: .82rem; font-weight: 700; color: var(--text-dark); }

.pl-float-chip--b {
  bottom: -16px; left: -20px;
  padding: .75rem 1.1rem;
  display: flex;
  flex-direction: column;
  animation-delay: 2s;
}
.pfcb-mini { font-size: .68rem; color: var(--text-light); font-weight: 500; }
.pfcb-big  { font-size: 1.3rem; font-weight: 800; color: var(--green-deep); line-height: 1.2; }

@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.pl-img-ribbon {
  position: absolute;
  top: 16px; left: -4px;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-deep);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 2px 12px rgba(201,168,76,.4);
  z-index: 10;
}

.pl-img-corner {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 10;
}
.pl-img-corner--tl {
  top: -1px; left: -1px;
  border-top:  3px solid var(--gold);
  border-left: 3px solid var(--gold);
}
.pl-img-corner--br {
  bottom: -1px; right: -1px;
  border-bottom: 3px solid var(--gold);
  border-right:  3px solid var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   DETAILS SECTION
═══════════════════════════════════════════════════════════ */
.pl-details {
  position: relative;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.pld-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pld-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.pld-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.pld-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.pld-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.pld-sym {
  position: absolute;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  user-select: none;
}
.d1 { top: 5%;  right: 5%; }
.d2 { top: 50%; left: 3%;  font-size: 4rem; }
.d3 { bottom: 8%; right: 15%; font-size: 4.5rem; }
.d4 { bottom: 15%; left: 20%; font-size: 3rem; }

.pld-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pld-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.pl-eyebrow--light { color: rgba(255,255,255,.55); }
.pl-eyebrow--light::before,
.pl-eyebrow--light::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,.3);
}
.pl-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
}
.pl-section-title--light { color: var(--white); }
.plst-accent-gold { color: var(--gold-light); }
.pl-section-bar {
  width: 60px; height: 3px;
  border-radius: 2px;
  margin: 1rem auto 0;
}
.pl-section-bar--gold { background: linear-gradient(90deg, var(--gold), transparent); }

.pld-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pld-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  overflow: hidden;
}
.pld-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.3);
  background: rgba(255,255,255,.09);
}
.pld-card--featured {
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.08);
}
.pld-card--featured:hover { background: rgba(201,168,76,.12); }

.pld-card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.pld-card-glow--gold {
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
}

.pld-featured-label {
  position: absolute;
  top: 1rem; right: 1rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .65rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-deep);
  font-size: .68rem;
  font-weight: 700;
  border-radius: 50px;
}

.pld-card-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.06);
  line-height: 1;
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-display);
  pointer-events: none;
}
.pld-card--featured .pld-card-number { color: rgba(201,168,76,.1); }

.pld-card-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.pld-ci--green { background: rgba(255,255,255,.1);  color: rgba(255,255,255,.9); }
.pld-ci--gold  { background: rgba(201,168,76,.2);   color: var(--gold-light); }

.pld-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  position: relative;
  z-index: 1;
}
.pld-card-body {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.pld-card-body strong { color: var(--white); }

.pld-card-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  position: relative;
  z-index: 1;
}
.pld-card-tag--gold {
  background: rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.3);
  color: var(--gold-light);
}

.pld-summary-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  gap: 0;
}
.pss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 0 2.5rem;
  text-align: center;
}
.pss-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: .25rem;
}
.pss-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}
.pss-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pss-div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   DECLARATION SECTION
═══════════════════════════════════════════════════════════ */
.pl-declaration {
  position: relative;
  background: var(--cream);
  padding: 6rem 0;
  overflow: hidden;
}
.pldecl-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.pldecl-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,58,47,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,47,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.pldecl-sym {
  position: absolute;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(30,58,47,.04);
  user-select: none;
}
.e1 { top: 5%;  right: 5%; }
.e2 { top: 50%; left: 3%;  font-size: 4rem; }
.e3 { bottom: 8%; right: 10%; font-size: 4.5rem; }
.e4 { bottom: 15%; left: 15%; font-size: 3rem; }

.pldecl-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pldecl-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.pldecl-icon-col { text-align: center; }
.pldecl-shield-outer {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
}
.pldecl-shield-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201,168,76,.3);
  border-radius: 50%;
  animation: pulseRing 2.5s ease-in-out infinite;
}
@keyframes pulseRing {
  0%,100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.08); opacity: .5; }
}
.pldecl-shield-body {
  position: absolute;
  inset: 8px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.pldecl-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.pldecl-tagline {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.pldecl-badge-row {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.pldecl-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  background: rgba(30,58,47,.08);
  border: 1px solid rgba(30,58,47,.12);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-mid);
}
.pldecl-badge--gold {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.25);
  color: var(--gold-dark);
}

.pldecl-list { display: flex; flex-direction: column; gap: .75rem; }
.pldecl-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pldecl-item:hover {
  transform: translateX(4px);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.pldecl-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  font-family: var(--font-display);
  transition: var(--transition);
}
.pldecl-item-content strong {
  display: block;
  font-size: .9rem;
  color: var(--text-dark);
  margin-bottom: .25rem;
}
.pldecl-item-content p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════ */
.pl-cta-strip {
  position: relative;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: 4rem 0;
  overflow: hidden;
}
.plcta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.plcta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.plcta-orb {
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.plcta-sym {
  position: absolute;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  user-select: none;
}
.c1 { top: 10%;    left: 3%; }
.c2 { bottom: 10%; right: 5%; }

.plcta-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.plcta-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .6rem;
}
.plcta-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.plcta-sub {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 520px;
}
.plcta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.plcta-btn-primary,
.plcta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  font-size: .875rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.plcta-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.plcta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,.45);
}
.plcta-btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
}
.plcta-btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
}
.footer-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.footer-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.footer-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.footer-bg-orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.footer-bg-orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}
.footer-bg-icon {
  position: absolute;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  user-select: none;
}
.fbi-1 { top: 10%;    left: 5%; }
.fbi-2 { top: 60%;    right: 5%; }
.fbi-3 { bottom: 20%; left: 25%; }
.fbi-4 { top: 30%;    right: 25%; }

.footer-body {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-col { display: flex; flex-direction: column; }

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
}
.footer-brand-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.3);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-col-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
}
.footer-col-title-bar {
  display: block;
  width: 3px; height: 16px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-links-list { display: flex; flex-direction: column; gap: .3rem; }
.footer-link {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem 0;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-link:hover,
.footer-link--active {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-top: .1rem;
}
.footer-contact-info { display: flex; flex-direction: column; gap: .15rem; }
.footer-contact-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.footer-contact-value {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  display: block;
}
.footer-contact-link {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-contact-link:hover { color: var(--gold-light); }

.footer-compliance {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  margin-top: auto;
}
.footer-compliance-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.footer-compliance-text { display: flex; flex-direction: column; gap: .1rem; }
.footer-compliance-title { font-size: .8rem;  font-weight: 700; color: rgba(255,255,255,.8); }
.footer-compliance-sub  { font-size: .72rem; color: rgba(255,255,255,.45); }

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,.2);
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-bottom-nav { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.footer-bottom-link {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-bottom-link:hover { color: var(--gold-light); }
.footer-bottom-sep {
  width: 3px; height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pl-intro-container { grid-template-columns: 1fr; gap: 3rem; }
  .pl-image-col { max-width: 560px; margin: 0 auto; width: 100%; }
  .pld-cards { grid-template-columns: 1fr 1fr; }
  .pld-cards .pld-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; width: 100%; }
  .pldecl-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pldecl-icon-col { display: flex; flex-direction: column; align-items: center; }
  .footer-body-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: span 2; }
  .plcta-inner { flex-direction: column; text-align: center; }
  .plcta-sub { max-width: 100%; }
  .plcta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .banner-title { font-size: 2.4rem; }
  .banner-content { padding: 3rem 1.25rem 4rem; }
  .pl-intro { padding: 4rem 0; }
  .pl-intro-container { padding: 0 1.25rem; }
  .pl-advantages { flex-direction: column; }
  .pld-cards { grid-template-columns: 1fr; }
  .pld-cards .pld-card:last-child { grid-column: span 1; max-width: 100%; }
  .pld-container { padding: 0 1.25rem; }
  .pss-item { padding: 0 1.25rem; }
  .pldecl-container { padding: 0 1.25rem; }
  .pldecl-inner { gap: 2rem; }
  .plcta-inner { padding: 0 1.25rem; }
  .plcta-actions { flex-direction: column; align-items: center; }
  .plcta-btn-primary, .plcta-btn-ghost { width: 100%; justify-content: center; }
  .footer-body-inner { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-nav { justify-content: center; }
}

@media (max-width: 480px) {
  .banner-title { font-size: 1.9rem; }
  .banner-chips { flex-direction: column; gap: .5rem; }
  .pld-summary-strip { flex-direction: column; gap: 1rem; }
  .pss-div { width: 60px; height: 1px; }
  .pl-float-chip--a { top: -12px; right: -8px; }
  .pl-float-chip--b { bottom: -12px; left: -8px; }
}