/* ==========================================================================
   9wickets Pro — Premium Design System (luxury gold + maroon)
   Loaded globally. Scoped to .pp-* classes + HFE header/footer + #home-premium.
   ========================================================================== */

:root {
  /* Brand plum scale (main color #431d42) */
  --pp-maroon-900: #1e0c20;
  --pp-maroon-800: #2e1330;
  --pp-maroon-700: #431d42; /* primary brand color */
  --pp-maroon-600: #572854;
  --pp-maroon-500: #6a3466;

  /* Deep plum (footer / deep sections) */
  --pp-plum-900: #160a18;
  --pp-plum-800: #2a1330;

  /* Gold scale */
  --pp-gold-300: #f6d77a;
  --pp-gold-400: #e9c46a;
  --pp-gold-500: #d4af37; /* classic gold */
  --pp-gold-600: #b8860b;

  /* Neutrals */
  --pp-cream: #f7f1e6;
  --pp-cream-2: #efe6d5;
  --pp-ink: #1a1113;
  --pp-ink-soft: #4a3b40;
  --pp-on-dark: #f7f1e6;
  --pp-on-dark-dim: rgba(247, 241, 230, 0.72);

  /* Gradients */
  --pp-grad-gold: linear-gradient(135deg, #f6d77a 0%, #d4af37 52%, #b8860b 100%);
  --pp-grad-maroon: linear-gradient(135deg, #4e2249 0%, #431d42 45%, #2c1430 100%);
  --pp-grad-plum: linear-gradient(160deg, #2a1330 0%, #160a18 100%);

  /* Radius / shadow / spacing */
  --pp-radius: 18px;
  --pp-radius-sm: 12px;
  --pp-radius-pill: 999px;
  --pp-shadow: 0 18px 44px rgba(30, 12, 32, 0.18);
  --pp-shadow-soft: 0 10px 26px rgba(30, 12, 32, 0.12);
  --pp-glow-gold: 0 0 0 1px rgba(212, 175, 55, 0.45), 0 10px 30px rgba(212, 175, 55, 0.22);
  --pp-container: 1200px;

  --pp-font: "Hind Siliguri", "Noto Sans Bengali", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Prevent off-canvas mobile nav from creating horizontal scroll (clip keeps sticky working). */
html { overflow-x: clip; }

/* Never underline links inside premium components (overrides theme a:hover underline). */
.pp-header a, .pp-header a:hover, .pp-header a:focus, .pp-header a:active,
.pp-footer a, .pp-footer a:hover, .pp-footer a:focus, .pp-footer a:active,
#home-premium a, #home-premium a:hover, #home-premium a:focus, #home-premium a:active,
.pp-btn, .pp-btn:hover, .pp-btn:focus, .pp-btn:active { text-decoration: none !important; }

/* Floating action buttons: scroll-to-top (bottom-left) + WhatsApp (bottom-right) */
.pp-totop-float {
  position: fixed; left: 28px; bottom: 28px; z-index: 9999; padding: 0; border: 0; cursor: pointer;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pp-grad-gold); color: #241026; box-shadow: 0 10px 26px rgba(30, 12, 32, 0.4);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}
.pp-totop-float.show { opacity: 1; visibility: visible; transform: translateY(0); }
.pp-totop-float:hover { transform: translateY(-3px); box-shadow: 0 15px 32px rgba(30, 12, 32, 0.5); }
.pp-totop-float svg { width: 22px; height: 22px; }
.pp-wa-float {
  position: fixed; right: 28px; bottom: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
  text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pp-wa-float svg { width: 30px; height: 30px; }
.pp-wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.65); text-decoration: none !important; }
.pp-wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pp-wa-pulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes pp-wa-pulse { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pp-wa-float::before { animation: none; } }
@media (max-width: 640px) {
  .pp-totop-float { left: 18px; bottom: 18px; width: 48px; height: 48px; }
  .pp-totop-float svg { width: 20px; height: 20px; }
  .pp-wa-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
  .pp-wa-float svg { width: 27px; height: 27px; }
}

/* --------------------------------------------------------------------------
   Primitives
   -------------------------------------------------------------------------- */
.pp-container {
  width: 100%;
  max-width: var(--pp-container);
  margin-inline: auto;
  padding-inline: 20px;
}

.pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pp-gold-600);
}
.pp-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--pp-grad-gold);
  border-radius: 2px;
}

.pp-title {
  font-family: var(--pp-font);
  font-weight: 800;
  line-height: 1.18;
  color: var(--pp-ink);
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 3rem);
  margin: 0.35em 0 0.4em;
}
.pp-title .pp-gold { color: var(--pp-gold-600); }

.pp-subtitle {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
  line-height: 1.7;
  color: var(--pp-ink-soft);
  max-width: 60ch;
}

.pp-on-dark .pp-title { color: #fff; }
.pp-on-dark .pp-subtitle { color: var(--pp-on-dark-dim); }
.pp-on-dark .pp-gold,
.pp-gold-text { color: var(--pp-gold-400); }

/* Buttons */
.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--pp-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 30px;
  border-radius: var(--pp-radius-pill);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  will-change: transform;
}
.pp-btn:hover { transform: translateY(-2px); }
.pp-btn:active { transform: translateY(0); }
.pp-btn svg { width: 18px; height: 18px; flex: none; }

.pp-btn--gold {
  background: var(--pp-grad-gold);
  color: #3a2708;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}
.pp-btn--gold:hover {
  color: #241026;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.5);
}

.pp-btn--maroon {
  background: var(--pp-grad-maroon);
  color: #fff;
  box-shadow: 0 10px 24px rgba(67, 29, 66, 0.4);
}
.pp-btn--maroon:hover { color: var(--pp-gold-300); }

.pp-btn--ghost {
  background: transparent;
  color: var(--pp-gold-400);
  box-shadow: inset 0 0 0 1.5px rgba(212, 175, 55, 0.6);
}
.pp-btn--ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--pp-gold-300);
}

/* Cards */
.pp-card {
  background: #fff;
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow-soft);
  border: 1px solid rgba(30, 12, 32, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pp-shadow);
}

.pp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--pp-radius-pill);
  background: rgba(212, 175, 55, 0.12);
  color: var(--pp-gold-600);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Section scaffolding */
.pp-section { padding: clamp(30px, 3.2vw, 52px) 0; position: relative; }
.pp-section--cream { background: var(--pp-cream); }
.pp-section--dark { background: var(--pp-grad-plum); color: var(--pp-on-dark); }
.pp-section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(22px, 2.6vw, 38px); }
.pp-section-head .pp-subtitle { margin-inline: auto; }
.pp-section-head .pp-eyebrow { justify-content: center; }

/* Reveal-on-scroll. Hidden state only applies when JS confirms it (html.js-reveal),
   so no-JS / crawler / JS-error cases always show content. */
.pp-reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js-reveal .pp-reveal { opacity: 0; transform: translateY(22px); }
.js-reveal .pp-reveal.pp-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .pp-reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   HEADER (HFE template: .pp-header)
   ========================================================================== */
#hfe-header .elementor-widget-container,
.pp-header * { box-sizing: border-box; }
.pp-header { font-family: var(--pp-font); position: relative; z-index: 999; }

/* Notice / utility bar */
.pp-header__notice {
  background: var(--pp-maroon-900);
  color: var(--pp-on-dark-dim);
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.pp-header__notice-inner { display: flex; align-items: center; gap: 16px; height: 40px; }
.pp-header__notice-label {
  flex: none;
  display: inline-flex; align-items: center;
  background: var(--pp-grad-gold);
  color: #3a2708; font-weight: 700;
  padding: 5px 14px; border-radius: var(--pp-radius-pill);
  font-size: 0.8rem; letter-spacing: 0.02em;
}
.pp-header__notice-track { flex: 1 1 auto; overflow: hidden; white-space: nowrap; }
.pp-header__notice-track > span {
  display: inline-block; padding-left: 100%;
  animation: pp-marquee 22s linear infinite;
}
.pp-header__notice:hover .pp-header__notice-track > span { animation-play-state: paused; }
@keyframes pp-marquee { to { transform: translateX(-100%); } }
.pp-header__notice-social { flex: none; display: flex; gap: 8px; }
.pp-header__notice-social a {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; color: var(--pp-gold-400);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pp-header__notice-social a:hover { background: var(--pp-grad-gold); color: #3a2708; transform: translateY(-1px); }

/* Main bar */
.pp-header__bar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--pp-grad-maroon);
  box-shadow: 0 2px 0 rgba(212, 175, 55, 0.25);
  transition: box-shadow 0.25s ease, padding 0.25s ease, background 0.25s ease;
}
.pp-header__bar.is-stuck { box-shadow: 0 10px 30px rgba(15, 6, 17, 0.45), 0 2px 0 rgba(212, 175, 55, 0.4); }
.pp-header__bar-inner {
  display: flex; align-items: center; gap: 22px;
  height: 78px; transition: height 0.25s ease;
}
.pp-header__bar.is-stuck .pp-header__bar-inner { height: 66px; }
.pp-header__logo { flex: none; display: inline-flex; align-items: center; }
.pp-header__logo img { height: 48px; width: auto; display: block; transition: height 0.25s ease; }
.pp-header__bar.is-stuck .pp-header__logo img { height: 42px; }

/* Nav */
.pp-nav { margin-inline: auto; }
.pp-nav__list { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.pp-nav__item { position: relative; }
.pp-nav__item > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 14px; border-radius: 10px; white-space: nowrap;
  color: #f3e7c9; font-weight: 600; font-size: 0.98rem; text-decoration: none;
}
.pp-nav__list > .pp-nav__item > a { transition: color 0.18s ease, background 0.18s ease; }
.pp-nav__item > a:hover,
.pp-nav__item:focus-within > a { color: var(--pp-gold-300); background: rgba(212, 175, 55, 0.1); }
.pp-nav__item > a .pp-caret { width: 12px; height: 12px; transition: transform 0.2s ease; }
.pp-nav__item:hover > a .pp-caret, .pp-nav__item:focus-within > a .pp-caret { transform: rotate(180deg); }

.pp-nav__drop {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 232px;
  background: var(--pp-plum-800);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(15, 5, 20, 0.5);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.pp-nav__item:hover > .pp-nav__drop,
.pp-nav__item:focus-within > .pp-nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.pp-nav__drop::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.pp-nav__drop a {
  display: block; padding: 11px 14px; border-radius: 9px;
  color: var(--pp-on-dark-dim); font-weight: 500; font-size: 0.96rem; text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}
.pp-nav__drop a:hover { color: #fff; background: rgba(212, 175, 55, 0.14); padding-left: 20px; }

/* Actions: search + CTA */
.pp-header__actions { flex: none; display: flex; align-items: center; gap: 14px; }
.pp-search { position: relative; }
/* the wrap is the premium pill (overrides theme .search-box/.search-box-wrap) */
.pp-header .search-box, .pp-header .search-form { margin: 0 !important; padding: 0 !important; border: 0 !important; background: transparent !important; }
.pp-header .search-box-wrap {
  min-width: 0 !important; width: 236px; height: 44px;
  display: flex !important; align-items: center; gap: 6px;
  padding: 0 6px 0 17px !important; margin: 0 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: var(--pp-radius-pill) !important;
  -webkit-backdrop-filter: none !important; backdrop-filter: none !important;
  position: relative; z-index: 1; transition: background 0.2s ease, border-color 0.2s ease;
}
.pp-header .search-box-wrap:hover,
.pp-header .search-box-wrap:focus-within { background: rgba(255, 255, 255, 0.14) !important; border-color: var(--pp-gold-400) !important; }
.pp-header .search-box-wrap label { flex: 1 1 auto; min-width: 0; margin: 0 !important; }
.pp-header .search-box-wrap .search-field {
  flex: 1 1 auto; min-width: 0; width: 100% !important;
  height: 42px !important; padding: 0 !important; margin: 0 !important;
  background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
  color: #fff !important; font-family: var(--pp-font) !important; font-size: 0.92rem !important; font-weight: 500 !important; outline: none !important;
}
.pp-header .search-box-wrap .search-field::placeholder { color: rgba(247, 241, 230, 0.6) !important; }
.pp-header .search-box-wrap .search-submit {
  flex: none; position: static !important; width: 34px !important; height: 34px !important; min-width: 34px !important;
  padding: 0 !important; margin: 0 !important; border: 0 !important; border-radius: 50% !important; cursor: pointer;
  background: var(--pp-grad-gold) !important; background-size: cover !important;
  color: #241026 !important; display: grid !important; place-items: center; opacity: 1 !important; font-size: 0 !important;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.35); transition: transform 0.18s ease;
}
.pp-header .search-box-wrap .search-submit:hover { transform: scale(1.06); opacity: 1 !important; }
.pp-header .search-box-wrap .search-submit svg { width: 18px !important; height: 18px !important; display: block; }

/* Premium agent-suggestions dropdown (overrides theme) */
.pp-header .search-suggestions {
  position: absolute !important; top: calc(100% + 10px) !important; right: 0 !important; left: auto !important;
  width: min(340px, 88vw) !important; min-width: 0 !important; max-width: none !important; z-index: 1300;
  background: var(--pp-plum-800) !important; border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 14px !important; box-shadow: 0 24px 54px rgba(10, 4, 14, 0.55) !important; overflow: hidden;
}
.pp-header .suggestion-loading, .pp-header .no-suggestions { padding: 15px 18px; color: rgba(247, 241, 230, 0.72); font-size: 0.9rem; text-align: center; }
.pp-header .suggestions-list { list-style: none; margin: 0 !important; padding: 6px !important; max-height: 380px; overflow-y: auto; }
.pp-header .suggestion-item {
  display: flex; align-items: center; gap: 12px; padding: 9px 10px !important; border-radius: 10px; cursor: pointer;
  transition: background 0.16s ease; border: 0 !important;
}
.pp-header .suggestion-item:hover { background: rgba(212, 175, 55, 0.14); }
.pp-header .suggestion-thumb {
  flex: none; width: 44px; height: 44px; border-radius: 10px; overflow: hidden;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(212, 175, 55, 0.2);
}
.pp-header .suggestion-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-header .suggestion-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pp-header .suggestion-name { color: #fff !important; font-weight: 700; font-size: 0.95rem; line-height: 1.3; }
.pp-header .suggestion-id { color: var(--pp-gold-300) !important; font-size: 0.78rem; }
.pp-header .suggestion-category { color: rgba(247, 241, 230, 0.6) !important; font-size: 0.76rem; }
.pp-header__cta { padding: 13px 24px; font-size: 0.98rem; white-space: nowrap; }

/* Mobile nav toggle (hidden on desktop) */
.pp-nav-toggle { display: none; }

@media (max-width: 1080px) {
  .pp-header__cta span.pp-cta-long { display: none; }
  .pp-header .search-box-wrap { width: 180px; }
}
/* Panel-only extras (hidden on desktop, shown inside the drawer on mobile) */
.pp-nav__panel-head, .pp-nav__panel-foot { display: none; }

@media (max-width: 992px) {
  .pp-nav-toggle {
    display: inline-grid; place-items: center; width: 46px; height: 46px;
    border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.12); color: var(--pp-gold-300); cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .pp-nav-toggle:hover { background: rgba(212, 175, 55, 0.2); }
  /* Search stays visible on mobile, filling the space before the hamburger */
  .pp-header__logo img { height: 38px; }
  .pp-header__actions { flex: 1 1 auto; min-width: 0; margin-left: 10px; gap: 8px; }
  .pp-header__cta { display: none; }
  .pp-search {
    display: block; flex: 1 1 auto; min-width: 0;
    position: relative; left: 0 !important; right: auto !important;
  }
  .pp-header .search-box-wrap { width: 100% !important; min-width: 0 !important; padding: 0 4px 0 13px !important; }
  /* Keep the agent-suggestions dropdown inside the viewport (it's anchored to
     the narrow pill near the right edge, so span the screen with even margins). */
  .pp-header .search-suggestions {
    left: auto !important;
    right: -58px !important;
    width: min(360px, calc(100vw - 24px)) !important;
  }

  /* ── Off-canvas drawer ── */
  .pp-nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
    display: flex; flex-direction: column;
    background:
      radial-gradient(130% 42% at 100% 0%, rgba(212, 175, 55, 0.14), transparent 60%),
      linear-gradient(160deg, #3b1739 0%, #2a1330 52%, #180a1c 100%);
    border-left: 1px solid rgba(212, 175, 55, 0.28);
    margin: 0; padding: 0;
    transform: translateX(100%); transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.55); z-index: 1200;
  }
  .pp-nav.is-open { transform: translateX(0); }

  /* Drawer header: logo + close */
  .pp-nav__panel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 18px; position: sticky; top: 0; z-index: 3;
    background: linear-gradient(180deg, rgba(59, 23, 57, 0.98), rgba(42, 19, 48, 0.82));
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }
  .pp-nav__panel-logo { display: inline-flex; }
  .pp-nav__panel-logo img { height: 40px; width: auto; display: block; }

  /* Menu list */
  .pp-nav__list { flex-direction: column; align-items: stretch; gap: 4px; padding: 14px 14px 4px; }
  .pp-nav__item { border-radius: 12px; }
  .pp-nav__item > a {
    padding: 14px 15px; font-size: 1.04rem; font-weight: 600; border-radius: 12px;
    justify-content: space-between; color: #f3e7c9; border: 1px solid transparent;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }
  .pp-nav__item > a:hover,
  .pp-nav__item.is-open > a {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--pp-gold-300);
  }
  .pp-nav__item > a .pp-caret { width: 15px; height: 15px; opacity: 0.8; }
  .pp-nav__item.is-open > a .pp-caret { transform: rotate(180deg); }

  /* Submenu (accordion) */
  .pp-nav__drop {
    position: relative; top: auto; left: auto; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent;
    min-width: 0; margin: 0; max-height: 0; overflow: hidden;
    padding: 0 8px 0 22px;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
  }
  .pp-nav__item.is-open > .pp-nav__drop { max-height: 480px; padding: 4px 8px 8px 22px; margin: 2px 0 4px; }
  .pp-nav__drop::before {
    content: ""; position: absolute; left: 11px; top: 8px; bottom: 12px; width: 2px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.55), rgba(212, 175, 55, 0));
    border-radius: 2px;
  }
  .pp-nav__drop a {
    display: block; padding: 11px 12px; border-radius: 9px;
    color: var(--pp-on-dark-dim); font-weight: 500; font-size: 0.98rem;
    transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
  }
  .pp-nav__drop a:hover { color: #fff; background: rgba(212, 175, 55, 0.12); padding-left: 17px; }

  /* Drawer footer: CTA + social */
  .pp-nav__panel-foot {
    display: flex; flex-direction: column; gap: 14px;
    margin-top: auto; padding: 16px 18px 22px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
  }
  .pp-nav__cta { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }
  .pp-nav__social { display: flex; justify-content: center; gap: 12px; }
  .pp-nav__social a {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    color: var(--pp-gold-300); background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .pp-nav__social a:hover { background: var(--pp-grad-gold); color: #241026; transform: translateY(-2px); }

  /* Backdrop */
  .pp-nav-backdrop {
    position: fixed; inset: 0; background: rgba(10, 4, 14, 0.62);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity 0.34s ease; z-index: 1100;
  }
  .pp-nav-backdrop.is-open { opacity: 1; visibility: visible; }

  /* Close button */
  .pp-nav-close {
    position: static; width: 42px; height: 42px; padding: 0;
    border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.1); color: var(--pp-gold-300);
    cursor: pointer; display: grid; place-items: center;
    transition: background 0.2s ease, transform 0.25s ease;
  }
  .pp-nav-close:hover { background: rgba(212, 175, 55, 0.22); transform: rotate(90deg); }
}
@media (min-width: 993px) {
  .pp-nav-close, .pp-nav-backdrop, .pp-nav__panel-head, .pp-nav__panel-foot { display: none; }
}
@media (max-width: 600px) {
  /* Free space for the hamburger; account CTA still lives in hero + nav panel. */
  .pp-header__cta { display: none; }
  .pp-header__bar-inner { gap: 14px; }
  .pp-header__notice-inner { gap: 10px; }
}

/* ==========================================================================
   FOOTER (HFE template: .pp-footer)
   ========================================================================== */
.footer-width-fixer { width: 100%; }
.pp-footer {
  font-family: var(--pp-font);
  background: var(--pp-grad-plum);
  color: var(--pp-on-dark-dim);
  border-top: 3px solid transparent;
  border-image: var(--pp-grad-gold) 1;
  position: relative;
}
.pp-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 85% 0%, rgba(212, 175, 55, 0.1), transparent 60%);
}
.pp-footer__inner { position: relative; padding: clamp(48px, 6vw, 80px) 0 0; }
.pp-footer__grid {
  display: grid; gap: 40px 32px;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
}
.pp-footer__brand-logo img { height: 52px; width: auto; margin-bottom: 18px; }
.pp-footer__about { font-size: 0.95rem; line-height: 1.75; max-width: 34ch; }
.pp-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.pp-footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px;
  color: var(--pp-gold-400); border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.06);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pp-footer__social a:hover { background: var(--pp-grad-gold); color: #241026; transform: translateY(-3px); }

.pp-footer__col h4 {
  color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0 0 20px; position: relative; padding-bottom: 12px;
}
.pp-footer__col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px;
  background: var(--pp-grad-gold); border-radius: 3px;
}
.pp-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.pp-footer__links a {
  color: var(--pp-on-dark-dim); text-decoration: none; font-size: 0.96rem;
  display: inline-flex; align-items: center; gap: 9px; transition: color 0.18s ease, gap 0.18s ease;
}
.pp-footer__links a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pp-gold-500); opacity: 0.7; transition: transform 0.18s ease;
}
.pp-footer__links a:hover { color: var(--pp-gold-300); gap: 13px; }

.pp-footer__pills { display: grid; gap: 12px; }
.pp-footer__pill {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 18px; border-radius: 14px; text-decoration: none;
  background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.28);
  color: #fff; font-weight: 600; transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.pp-footer__pill span.pp-footer__pill-ico { color: var(--pp-gold-400); display: inline-flex; }
.pp-footer__pill:hover { background: rgba(212, 175, 55, 0.16); border-color: var(--pp-gold-400); transform: translateY(-2px); }
.pp-footer__note-18 {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--pp-on-dark-dim);
}
.pp-footer__note-18 b {
  flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(212, 175, 55, 0.15); color: var(--pp-gold-300); font-size: 0.8rem; border: 1px solid rgba(212,175,55,.35);
}

.pp-footer__bottom {
  margin-top: clamp(36px, 5vw, 60px); border-top: 1px solid rgba(212, 175, 55, 0.16);
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.pp-footer__copy { font-size: 0.9rem; color: var(--pp-on-dark-dim); }
.pp-footer__copy b { color: var(--pp-gold-400); font-weight: 700; }
.pp-footer__disclaimer { font-size: 0.82rem; color: rgba(247, 241, 230, 0.5); }

@media (max-width: 900px) {
  .pp-footer__grid { grid-template-columns: 1fr 1fr; }
  .pp-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .pp-footer__grid { grid-template-columns: 1fr; }
  .pp-footer__bottom { flex-direction: column; text-align: center; }
}
