/* ════════ NEED HELP BUTTON ════════ */
#need-help-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, #f59e0b, #ef4444, #f97316);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .92rem;
  padding: .78rem 1.6rem;
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(245,158,11,.6), 0 6px 28px rgba(239,68,68,.5);
  cursor: pointer;
  transition: var(--trans);
  animation: needHelpPulse 2.2s ease-in-out infinite, gradShift 3s ease infinite;
  text-decoration: none;
  overflow: hidden;
  letter-spacing: .02em;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
}
#need-help-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shimmerSweep 2.4s ease-in-out infinite;
  border-radius: 99px;
}
#need-help-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 0 10px rgba(245,158,11,.15), 0 12px 36px rgba(239,68,68,.6);
}
.help-phone-svg {
  animation: helpPhoneRing 2s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 3px rgba(255,255,255,.6));
}
@keyframes helpPhoneRing {
  0%,45%,100% { transform: rotate(0deg) scale(1); }
  50%          { transform: rotate(-25deg) scale(1.2); }
  55%          { transform: rotate(25deg) scale(1.2); }
  60%          { transform: rotate(-18deg) scale(1.12); }
  65%          { transform: rotate(18deg) scale(1.12); }
  70%          { transform: rotate(-8deg) scale(1.06); }
  75%          { transform: rotate(0deg) scale(1); }
}
@keyframes needHelpPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.55), 0 6px 28px rgba(239,68,68,.45); }
  50%      { box-shadow: 0 0 0 12px rgba(245,158,11,.0), 0 6px 28px rgba(239,68,68,.45); }
}
@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes shimmerSweep {
  0%   { left: -75%; }
  60%,100% { left: 130%; }
}

/* ════════ NEED HELP MODAL ════════ */
#help-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
#help-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.help-modal {
  background: linear-gradient(160deg, #0d2045 0%, #1a4fce 100%);
  border-radius: 24px;
  padding: 2.2rem 2rem 1.8rem;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 32px 80px rgba(10,22,40,.45), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .35s ease;
  overflow: hidden;
}
.help-modal::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%);
  pointer-events: none;
}
#help-modal-overlay.open .help-modal {
  transform: translateY(0) scale(1);
}
.help-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  border: none;
}
.help-modal-close:hover { background: rgba(255,255,255,.22); color: #fff; }
.help-modal-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(245,158,11,.4);
  animation: helpPhoneRing 2s ease-in-out infinite;
}
.help-modal h3 {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
}
.help-modal p {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.help-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 6px 24px rgba(245,158,11,.45);
  margin-bottom: .9rem;
  position: relative;
  overflow: hidden;
}
.help-modal-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,158,11,.6); }
.help-modal-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.help-modal-disclaimer {
  font-size: .71rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .9rem;
}

/* ════════════ HEADER ════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(10,22,40,.07);
  transition: var(--trans);
}
#header.scrolled {
  box-shadow: 0 4px 28px rgba(10,22,40,.13);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--navy);
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
nav { display: flex; align-items: center; gap: .15rem; }
nav a {
  font-family: var(--ff-head);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text2);
  padding: .45rem .9rem;
  border-radius: 8px;
  transition: var(--trans);
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--blue);
  background: var(--light);
}
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow2);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  z-index: 999;
}
.dropdown a {
  display: block;
  padding: .5rem .8rem;
  font-size: .85rem;
  border-radius: 8px;
  color: var(--text);
}
.dropdown a:hover { background: var(--light); color: var(--blue); }
.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.btn-call {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .88rem;
  padding: .6rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,.55);
}
.btn-call .ring {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ringAnim 1.8s ease infinite;
  flex-shrink: 0;
}
@keyframes ringAnim {
  0%,100% { transform: rotate(0deg); }
  20%      { transform: rotate(-18deg); }
  40%      { transform: rotate(18deg); }
  60%      { transform: rotate(-12deg); }
  80%      { transform: rotate(12deg); }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  border-radius: 8px;
  transition: var(--trans);
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: var(--trans);
  display: block;
}
.hamburger:hover { background: var(--light); }

/* ════════════ PRIVACY HERO ════════════ */
#pp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0f3460 100%);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,125,210,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,125,210,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridFloat 22s linear infinite;
}
@keyframes gridFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(48px); }
}
.pp-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,79,206,.25) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}
.pp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.pp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--accent);
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .38rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.pp-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.2rem;
}
.pp-hero-title span {
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pp-hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 540px;
  margin: 0 auto 2rem;
}
.pp-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: .7rem 1.4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 480px;
}
.pp-hero-meta span { display: flex; align-items: center; gap: .35rem; white-space: nowrap; }

/* ════════════ PRIVACY CONTENT LAYOUT ════════════ */
#pp-content {
  background: var(--white);
  padding: 5rem 0;
}
.pp-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Sidebar TOC */
.pp-toc {
  position: sticky;
  top: 90px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--border);
}
.pp-toc-title {
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pp-toc ul { display: flex; flex-direction: column; gap: .2rem; }
.pp-toc ul li a {
  display: block;
  font-size: .88rem;
  color: var(--text2);
  padding: .4rem .7rem;
  border-radius: 8px;
  transition: var(--trans);
  line-height: 1.4;
  font-weight: 500;
}
.pp-toc ul li a:hover {
  color: var(--blue);
  background: rgba(26,79,206,.08);
  padding-left: 1rem;
}
.pp-toc ul li a.active {
  color: var(--blue);
  background: rgba(26,79,206,.1);
  font-weight: 600;
}
.pp-toc-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}
.pp-toc-contact {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 10px;
  padding: 1.1rem;
  text-align: center;
  margin-top: 1.2rem;
}
.pp-toc-contact p {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .7rem;
  line-height: 1.5;
}
.pp-toc-contact a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: var(--trans);
}
.pp-toc-contact a:hover { background: #e08d00; transform: translateY(-1px); }

/* Main Content */
.pp-main { min-width: 0; }

/* Section Card */
.pp-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: var(--trans);
  scroll-margin-top: 100px;
  position: relative;
  overflow: hidden;
}
.pp-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  opacity: 0;
  transition: var(--trans);
}
.pp-section:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }
.pp-section:hover::before { opacity: 1; }

.pp-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.pp-section-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pp-section-icon.blue   { background: rgba(26,79,206,.1); }
.pp-section-icon.sky    { background: rgba(45,125,210,.1); }
.pp-section-icon.amber  { background: rgba(245,158,11,.1); }
.pp-section-icon.green  { background: rgba(16,185,129,.1); }
.pp-section-icon.purple { background: rgba(139,92,246,.1); }
.pp-section-icon.red    { background: rgba(239,68,68,.1); }
.pp-section-icon.teal   { background: rgba(20,184,166,.1); }
.pp-section-icon.indigo { background: rgba(99,102,241,.1); }

.pp-section-num {
  font-family: var(--ff-head);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray2);
}
.pp-section-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

/* Content typography */
.pp-section p {
  font-size: .97rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.pp-section p:last-child { margin-bottom: 0; }

.pp-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1rem 0;
}
.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .96rem;
  color: var(--text2);
  line-height: 1.65;
}
.pp-list li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pp-highlight {
  background: linear-gradient(135deg, rgba(26,79,206,.06), rgba(45,125,210,.06));
  border: 1px solid rgba(26,79,206,.15);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  margin: 1.2rem 0;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.7;
}
.pp-highlight strong { color: var(--navy); }

.pp-warning {
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.2);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  margin: 1.2rem 0;
  font-size: .92rem;
  color: var(--text2);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.pp-warning-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Data Table */
.pp-table-wrap { overflow-x: auto; margin: 1.2rem 0; border-radius: 12px; border: 1px solid var(--border); }
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.pp-table th {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .85rem 1rem;
  text-align: left;
}
.pp-table td {
  padding: .85rem 1rem;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.pp-table tr:last-child td { border-bottom: none; }
.pp-table tr:nth-child(even) td { background: rgba(240,246,255,.5); }
.pp-table td strong { color: var(--navy); font-weight: 600; }

/* Rights Grid */
.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}
.pp-right-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  transition: var(--trans);
}
.pp-right-card:hover { background: rgba(26,79,206,.06); border-color: rgba(26,79,206,.2); transform: translateY(-2px); }
.pp-right-card-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pp-right-card h6 {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}
.pp-right-card p {
  font-size: .82rem;
  color: var(--text2);
  line-height: 1.5;
  margin: 0 !important;
}

/* Contact CTA */
.pp-contact-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy2), #0f3460);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.pp-contact-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,158,11,.18), transparent 70%);
  pointer-events: none;
}
.pp-contact-cta h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .8rem;
  position: relative;
}
.pp-contact-cta p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  margin-bottom: 1.6rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.pp-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(245,158,11,.4);
  transition: var(--trans);
  position: relative;
}
.pp-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,158,11,.55); }

/* Last updated badge */
.pp-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  color: #059669;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: 2.5rem;
}

/* ════════════ FOOTER ════════════ */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
}
.footer-about {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 0;
}
.footer-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.footer-about-desc {
  flex: 1;
  font-size: .95rem;
  line-height: 1.72;
  color: rgba(255,255,255,.65);
  min-width: 260px;
}
.footer-contact-block { flex-shrink: 0; }
.footer-contact-label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-phone-animated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a4fce 0%, #2d7dd2 100%);
  border: 1.5px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 20px rgba(26,79,206,.45), inset 0 1px 0 rgba(255,255,255,.12);
  transition: var(--trans);
  animation: phonePulseBtn 2.8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.footer-phone-animated::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: skewX(-20deg);
  animation: phoneShine 3.5s ease-in-out infinite;
}
.footer-phone-animated:hover {
  background: linear-gradient(135deg, #1e5ae0 0%, #3589e0 100%);
  box-shadow: 0 6px 30px rgba(26,79,206,.65);
}
.footer-phone-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  flex-shrink: 0;
  animation: ringAnim 1.8s ease infinite;
}
@keyframes phonePulseBtn {
  0%, 100% { box-shadow: 0 4px 20px rgba(26,79,206,.45), inset 0 1px 0 rgba(255,255,255,.12); }
  50%       { box-shadow: 0 4px 30px rgba(26,79,206,.7), 0 0 0 5px rgba(45,125,210,.15), inset 0 1px 0 rgba(255,255,255,.12); }
}
@keyframes phoneShine {
  0%        { left: -75%; }
  50%, 100% { left: 125%; }
}
.footer-contact-hours {
  font-size: .73rem;
  color: rgba(255,255,255,.38);
  margin-top: .65rem;
  text-align: center;
}
.footer-links {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 3rem 0;
}
.footer-links-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: .8rem; }
.footer-col ul li a {
  font-size: 1rem;
  color: rgba(255,255,255,.62);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--sky); padding-left: 4px; }
.footer-disclaimer {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1.8rem 0;
}
.footer-disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.disclaimer-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
}
.disclaimer-box h6 {
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.disclaimer-box p {
  font-size: .86rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
}
.footer-bottom { padding: 1.6rem 0; }
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: var(--trans);
  white-space: nowrap;
}
.footer-bottom-links a:hover { color: var(--sky); }

/* ════════════ BTT ════════════ */
#btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(26,79,206,.4);
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: var(--trans);
}
#btt.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#btt:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,79,206,.55); }

/* ════════════ MOBILE NAV ════════════ */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(14px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  overflow-y: auto;
  padding: 4rem 1rem 2rem;
}
#mobile-nav.open { display: flex; }
#mobile-nav > a {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: .7rem 2rem;
  border-radius: 10px;
  transition: var(--trans);
  width: 100%;
  max-width: 300px;
  text-align: center;
  border: none;
}
#mobile-nav > a:hover { color: var(--sky); background: rgba(45,125,210,.15); }
#mobile-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  color: rgba(255,255,255,.6);
  font-size: 1.5rem;
  cursor: pointer;
}
/* Mobile nav dropdown accordion */
#mobile-nav .nav-item {
  width: 100%;
  max-width: 300px;
  position: static;
  border: none;
}
#mobile-nav .nav-item .nav-dropdown-trigger {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: .7rem 2rem;
  border-radius: 10px;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  cursor: pointer;
  border: none;
}
#mobile-nav .nav-item .nav-dropdown-trigger:hover { color: var(--sky); background: rgba(45,125,210,.15); }
#mobile-nav .nav-item { border: none; border-bottom: none; }
#mobile-nav .nav-item .nav-chevron { transition: transform .25s ease; }
#mobile-nav .nav-item.mob-open .nav-chevron { transform: rotate(180deg); }
#mobile-nav .nav-item .dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: none;
  background: rgba(255,255,255,.06);
  border: none;
  border-radius: 10px;
  box-shadow: none;
  min-width: unset;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height .3s ease, padding .3s ease;
}
#mobile-nav .nav-item.mob-open .dropdown {
  max-height: 500px;
  padding: .4rem;
}
#mobile-nav .dropdown::before { display: none; }
#mobile-nav .dropdown a {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: .55rem 1rem;
  border-radius: 8px;
  display: block;
  text-align: center;
  white-space: normal;
  border: none;
}
#mobile-nav .dropdown a:hover { background: rgba(45,125,210,.2); color: var(--sky); }

/* ════════════ RESPONSIVE ════════════ */

@media (max-width: 1024px) {
  .pp-layout { grid-template-columns: 210px 1fr; gap: 2rem; }
  .pp-rights-grid { grid-template-columns: 1fr 1fr; }
  .pp-section { padding: 2rem; }
  .pp-toc { top: 85px; }
}

@media (max-width: 900px) {
  .pp-layout { grid-template-columns: 190px 1fr; gap: 1.5rem; }
  .pp-section-title { font-size: 1.1rem; }
  .pp-hero-title { font-size: 2.2rem; }
  .footer-links-inner { grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 1rem; height: 58px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .btn-call { font-size: .78rem; padding: .5rem .9rem; }
  .btn-call .ring { width: 22px; height: 22px; }
  #pp-hero { padding: 3rem 1.2rem 2.5rem; }
  .pp-hero-inner { width: 100%; }
  .pp-hero-title { font-size: 1.9rem; }
  .pp-hero-sub { font-size: .92rem; max-width: 100%; }
  .pp-hero-meta { font-size: .76rem; gap: .6rem; padding: .8rem 1rem; max-width: 100%; border-radius: 12px; }
  .pp-hero-badge { font-size: .7rem; }
  #pp-content { padding: 2.5rem 0; }
  .pp-layout { grid-template-columns: 1fr; padding: 0 1rem; gap: 1.5rem; }
  .pp-toc { order: -1; position: static; padding: 1.2rem; }
  .pp-toc ul { display: flex; flex-direction: column; gap: .1rem; }
  .pp-toc ul li { counter-increment: toc-counter; }
  .pp-toc-contact { display: none; }
  .pp-section { padding: 1.3rem; border-radius: 14px; margin-bottom: 1.2rem; }
  .pp-section-header { gap: .7rem; margin-bottom: 1.1rem; padding-bottom: .9rem; }
  .pp-section-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .pp-section-title { font-size: 1rem; }
  .pp-section-num { font-size: .66rem; }
  .pp-section p { font-size: .9rem; }
  .pp-list li { font-size: .9rem; }
  .pp-table th, .pp-table td { padding: .6rem .75rem; font-size: .82rem; }
  .pp-rights-grid { grid-template-columns: 1fr; gap: .75rem; }
  .pp-right-card { padding: .9rem; }
  .pp-highlight, .pp-warning { font-size: .88rem; padding: 1rem 1.1rem; }
  .pp-updated-badge { font-size: .74rem; }
  .pp-contact-cta { padding: 1.8rem 1.2rem; border-radius: 14px; }
  .pp-contact-cta h3 { font-size: 1.15rem; }
  .pp-contact-cta p { font-size: .88rem; margin-bottom: 1.2rem; }
  .pp-contact-btn { font-size: .88rem; padding: .75rem 1.5rem; }
  .footer-about-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-about-desc { font-size: .88rem; min-width: unset; }
  .footer-links-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-col h5 { font-size: .88rem; margin-bottom: 1rem; }
  .footer-col ul li a { font-size: .88rem; }
  .footer-phone-animated { font-size: 1.05rem; padding: .75rem 1rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .footer-bottom-links { gap: .8rem; flex-wrap: wrap; }
  #need-help-btn { bottom: 4.5rem; right: .8rem; font-size: .78rem; padding: .55rem 1rem; }
  .help-modal { padding: 1.8rem 1.3rem 1.4rem; }
  .help-modal h3 { font-size: 1rem; }
}

@media (max-width: 480px) {
  .header-inner { height: 54px; padding: 0 .8rem; }
  #pp-hero { padding: 2.5rem 1rem 2rem; }
  .pp-hero-title { font-size: 1.65rem; line-height: 1.22; }
  .pp-hero-sub { font-size: .88rem; }
  .pp-hero-badge { font-size: .66rem; padding: .28rem .85rem; }
  .pp-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
    padding: .9rem 1rem;
    border-radius: 12px;
    font-size: .8rem;
    width: 100%;
    max-width: 100%;
  }
  .pp-hero-meta span { white-space: nowrap; }
  .pp-layout { padding: 0 .85rem; gap: 1.2rem; }
  #pp-content { padding: 2rem 0; }
  .pp-toc { padding: 1rem; }
  .pp-toc-title { font-size: .72rem; margin-bottom: .8rem; }
  .pp-toc ul li a { font-size: .84rem; padding: .35rem .6rem; }
  .pp-section { padding: 1.1rem; border-radius: 12px; margin-bottom: 1rem; }
  .pp-section-icon { width: 34px; height: 34px; font-size: 1rem; border-radius: 9px; }
  .pp-section-title { font-size: .95rem; }
  .pp-section p, .pp-list li { font-size: .86rem; line-height: 1.7; }
  .pp-table th, .pp-table td { padding: .5rem .6rem; font-size: .78rem; }
  .footer-links-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-about { padding: 1.8rem 0; }
  .footer-about-inner, .footer-links-inner, .footer-disclaimer-inner, .footer-bottom-inner { padding: 0 1rem; }
  .footer-links { padding: 2rem 0; }
  .disclaimer-box { padding: 1rem; }
  .disclaimer-box p { font-size: .78rem; }
  .footer-bottom p, .footer-bottom-links a { font-size: .78rem; }
  .footer-phone-animated { font-size: .95rem; }
  .pp-contact-cta { padding: 1.5rem 1rem; margin-top: 1.5rem; }
  .pp-contact-btn { width: 100%; justify-content: center; font-size: .85rem; }
  #btt { bottom: 1.2rem; right: 1rem; width: 38px; height: 38px; font-size: .9rem; }
  #need-help-btn { bottom: 3.8rem; right: .7rem; font-size: .74rem; padding: .5rem .9rem; }
}

@media (max-width: 360px) {
  .pp-hero-title { font-size: 1.4rem; }
  .pp-section-title { font-size: .88rem; }
  .footer-phone-animated { font-size: .82rem; padding: .6rem .75rem; }
  .btn-call .ring ~ * { display: none; }
}