/* ==========================================================================
   PraDocs — Marketing Site Stylesheet
   Brand palette + component library shared across all front pages
   ========================================================================== */

:root {
  --pd-primary: #1D4ED8;
  --pd-primary-rgb: 29, 78, 216;
  --pd-secondary: #2563EB;
  --pd-accent: #0EA5E9;
  --pd-success: #10B981;
  --pd-bg: #F8FAFC;
  --pd-text: #0F172A;
  --pd-muted: #64748B;
  --pd-border: #E2E8F0;
  --pd-orange: #F97316;
  --pd-orange-light: #FFEDD5;
  --pd-navy: #102A56;
  --pd-white: #FFFFFF;

  --pd-gradient: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-accent) 100%);
  --pd-gradient-soft: linear-gradient(135deg, rgba(29,78,216,.08) 0%, rgba(14,165,233,.08) 100%);

  --pd-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --pd-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --pd-shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
  --pd-shadow-primary: 0 12px 28px rgba(29, 78, 216, 0.25);

  --pd-radius-sm: 10px;
  --pd-radius-md: 16px;
  --pd-radius-lg: 24px;

  --pd-font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--pd-font);
  color: var(--pd-text);
  background: var(--pd-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.skip-to-content {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 2000;
  background: var(--pd-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-to-content:focus {
  top: 12px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pd-font);
  font-weight: 800;
  color: var(--pd-text);
  letter-spacing: -0.02em;
}

p { color: var(--pd-muted); }

a { text-decoration: none; }

img { max-width: 100%; }

.bg-surface { background: var(--pd-white); }
.bg-soft { background: var(--pd-bg); }
.text-primary-pd { color: var(--pd-primary) !important; }
.text-muted-pd { color: var(--pd-muted) !important; }

.section-py { padding: 96px 0; }
@media (max-width: 768px) { .section-py { padding: 56px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pd-primary);
  background: rgba(29, 78, 216, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.eyebrow i { color: var(--pd-orange); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--pd-muted);
  max-width: 620px;
}
.section-head { margin-bottom: 56px; }
.section-head.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: var(--pd-radius-sm); padding: 12px 26px; font-size: 15px; transition: all .25s ease; border: none; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 8px 18px; font-size: 14px; }

.btn-pd-primary {
  background: var(--pd-gradient);
  color: #fff;
  box-shadow: var(--pd-shadow-primary);
}
.btn-pd-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(29,78,216,.32); }

.btn-pd-outline {
  background: #fff;
  color: var(--pd-primary);
  border: 1.5px solid var(--pd-border);
}
.btn-pd-outline:hover { border-color: var(--pd-primary); color: var(--pd-primary); background: rgba(29,78,216,.05); transform: translateY(-2px); }

.btn-pd-orange {
  background: var(--pd-orange);
  color: #fff;
  box-shadow: 0 12px 28px rgba(249,115,22,.28);
}
.btn-pd-orange:hover { color: #fff; transform: translateY(-2px); }

.btn-pd-ghost-light { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-pd-ghost-light:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ---------- Navbar ---------- */
.pd-navbar {
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.pd-navbar.is-scrolled {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--pd-border);
  box-shadow: var(--pd-shadow-sm);
}
.pd-navbar .navbar-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; color: var(--pd-text); }
.pd-navbar .navbar-brand img { height: 36px; width: auto; }
.pd-navbar .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--pd-text);
  padding: 8px 16px !important;
  border-radius: 8px;
}
.pd-navbar .nav-link:hover, .pd-navbar .nav-link.active { color: var(--pd-primary); }
.pd-navbar .dropdown-menu { border: none; box-shadow: var(--pd-shadow-lg); border-radius: var(--pd-radius-md); padding: 10px; margin-top: 12px; }
.pd-navbar .dropdown-item { border-radius: 8px; padding: 10px 14px; font-weight: 500; font-size: 14.5px; }
.pd-navbar .dropdown-item:hover { background: var(--pd-bg); color: var(--pd-primary); }
.pd-navbar .btn-login { font-weight: 600; color: var(--pd-text); padding: 10px 14px; }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Mega menu (Features / Solutions dropdowns) ---------- */
.mega-dropdown { min-width: 520px; padding: 16px; border-radius: 18px; overflow: hidden; position: relative; }
.mega-dropdown::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--pd-gradient); }
.mega-dropdown.mega-dropdown-sm { min-width: 340px; }
.mega-grid { grid-template-columns: 1fr 1fr; gap: 2px; padding: 0; list-style: none; display: grid; }
.mega-grid.show { display: grid; }
.mega-dropdown .mega-head { grid-column: 1 / -1; padding: 2px 11px 12px; margin-bottom: 6px; border-bottom: 1px solid var(--pd-border); list-style: none; }
.mega-dropdown .mega-head-title { display: block; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--pd-primary); }
.mega-dropdown .mega-head-sub { display: block; font-size: 12.5px; color: var(--pd-muted); font-weight: 500; margin-top: 3px; }
.mega-dropdown .mega-item, .mega-dropdown .dropdown-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px; border-radius: 12px; white-space: normal; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; color: var(--pd-text); }
.mega-dropdown .mega-item:hover, .mega-dropdown .dropdown-item:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(15, 23, 42, .09); background: var(--pd-bg); }
.mega-dropdown .mi-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; transition: all .2s ease; }
.mega-dropdown .mi-icon.mi-accent { background: rgba(14, 165, 233, .12); color: var(--pd-accent); }
.mega-dropdown .mi-icon.mi-success { background: rgba(16, 185, 129, .12); color: var(--pd-success); }
.mega-dropdown .mega-item:hover .mi-icon, .mega-dropdown .dropdown-item:hover .mi-icon { background: var(--pd-gradient); color: #fff; transform: scale(1.06); }
.mega-dropdown .dropdown-item:hover .mi-icon.mi-accent { background: var(--pd-accent); color: #fff; }
.mega-dropdown .dropdown-item:hover .mi-icon.mi-success { background: var(--pd-success); color: #fff; }
.mega-dropdown .mi-title { display: block; font-size: 14px; font-weight: 700; color: var(--pd-text); margin-bottom: 2px; }
.mega-dropdown .mi-desc { display: block; font-size: 12px; color: var(--pd-muted); font-weight: 500; line-height: 1.4; }
.mega-dropdown .mega-foot { display: block; border-top: 1px solid var(--pd-border); margin-top: 6px; padding: 12px 11px 4px; font-weight: 700; color: var(--pd-primary); font-size: 13.5px; }
.mega-dropdown .mega-foot:hover { color: var(--pd-primary); }
.mega-dropdown .see-all-link { font-weight: 700; color: var(--pd-primary); justify-content: space-between; align-items: center; }
.mega-dropdown .see-all-link:hover { background: var(--pd-bg); transform: none; box-shadow: none; }
.mega-dropdown .mega-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; padding: 14px 16px; border-radius: 14px; background: var(--pd-gradient); color: #fff; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; font-weight: 700; font-size: 13.5px; }
.mega-dropdown .mega-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(29, 78, 216, .3); color: #fff; }
.mega-item-sm { display: flex; align-items: center; gap: 12px; padding: 11px; border-radius: 12px; color: var(--pd-text); font-weight: 600; font-size: 14.5px; transition: all .18s ease; }
.mega-item-sm i { width: 32px; height: 32px; border-radius: 9px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.mega-item-sm:hover { background: var(--pd-bg); transform: translateY(-2px); color: var(--pd-primary); }

@media (max-width: 991.98px) {
  .pd-navbar .navbar-nav .dropdown-menu { position: static; box-shadow: none; border: 1px solid var(--pd-border); margin-top: 6px; }
  .mega-dropdown, .mega-dropdown.mega-dropdown-sm { min-width: 100%; }
  .mega-dropdown::before { display: none; }
  .mega-grid { grid-template-columns: 1fr; }
}

/* ---------- Hero ---------- */
.pd-hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(14,165,233,.16) 0%, transparent 50%),
    radial-gradient(circle at 0% 30%, rgba(29,78,216,.10) 0%, transparent 45%),
    var(--pd-bg);
}
.pd-hero .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--pd-border);
  padding: 8px 18px; border-radius: 100px; font-size: 13.5px; font-weight: 600;
  box-shadow: var(--pd-shadow-sm); margin-bottom: 24px;
}
.pd-hero .hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pd-success); display: inline-block; }
.pd-hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.12; margin-bottom: 22px; }
.pd-hero h1 .grad-text {
  background: var(--pd-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pd-hero .lead { font-size: 19px; color: var(--pd-muted); max-width: 540px; margin-bottom: 36px; }
.pd-hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.pd-hero .hero-trust { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13.5px; color: var(--pd-muted); font-weight: 600; }
.pd-hero .hero-trust i { color: var(--pd-success); margin-right: 6px; }

/* Hero mockup "dashboard" card built from divs (no real screenshots) */
.hero-mock {
  position: relative;
  background: #fff;
  border-radius: var(--pd-radius-lg);
  box-shadow: var(--pd-shadow-lg);
  border: 1px solid var(--pd-border);
  padding: 18px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}
.hero-mock .mock-topbar { display: flex; gap: 6px; margin-bottom: 14px; padding-left: 4px; }
.hero-mock .mock-topbar span { width: 10px; height: 10px; border-radius: 50%; background: var(--pd-border); }
.hero-mock .mock-body { display: grid; grid-template-columns: 84px 1fr; gap: 14px; }
.hero-mock .mock-side { background: var(--pd-bg); border-radius: 12px; padding: 12px 8px; display: flex; flex-direction: column; gap: 10px; }
.hero-mock .mock-side .ico { width: 30px; height: 30px; border-radius: 8px; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--pd-primary); font-size: 13px; box-shadow: var(--pd-shadow-sm); }
.hero-mock .mock-side .ico.active { background: var(--pd-gradient); color: #fff; }
.hero-mock .mock-main .stat-row { display: flex; gap: 10px; margin-bottom: 12px; }
.hero-mock .mock-main .stat-card { flex: 1; background: var(--pd-bg); border-radius: 12px; padding: 12px; }
.hero-mock .mock-main .stat-card .num { font-weight: 800; font-size: 18px; color: var(--pd-text); }
.hero-mock .mock-main .stat-card .lbl { font-size: 11px; color: var(--pd-muted); font-weight: 600; }
.hero-mock .mock-list .mock-file { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; margin-bottom: 6px; background: var(--pd-bg); }
.hero-mock .mock-list .mock-file .fico { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; }
.hero-mock .mock-list .mock-file .bar { flex: 1; height: 6px; border-radius: 4px; background: var(--pd-border); overflow: hidden; }
.hero-mock .mock-list .mock-file .bar span { display: block; height: 100%; background: var(--pd-accent); }
.hero-float-card {
  position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--pd-shadow-lg);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700;
  border: 1px solid var(--pd-border);
}
.hero-float-card .ic { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; }
.hero-float-1 { top: -22px; right: -10px; }
.hero-float-1 .ic { background: var(--pd-success); }
.hero-float-2 { bottom: -24px; left: -28px; }
.hero-float-2 .ic { background: var(--pd-orange); }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 40px 0; border-top: 1px solid var(--pd-border); border-bottom: 1px solid var(--pd-border); }
.logo-strip .strip-label { font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--pd-muted); text-align: center; margin-bottom: 28px; }
.logo-strip .logo-item { text-align: center; font-weight: 800; font-size: 20px; color: #94A3B8; opacity: .8; letter-spacing: -0.02em; }
.logo-strip .logo-item i { margin-right: 8px; }

/* ---------- Stats ---------- */
.stat-block { text-align: center; padding: 8px; }
.stat-block .stat-num { font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: var(--pd-text); display: flex; align-items: center; justify-content: center; gap: 2px; }
.stat-block .stat-num .grad-text { background: var(--pd-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-block .stat-lbl { font-size: 14.5px; font-weight: 600; color: var(--pd-muted); margin-top: 4px; }

/* ---------- Feature cards ---------- */
.feature-card {
  background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md);
  padding: 32px 26px; height: 100%; transition: all .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--pd-shadow-md); border-color: rgba(29,78,216,.25); }
.feature-card .f-icon {
  width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; margin-bottom: 20px; background: var(--pd-gradient);
}
.feature-card h5 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

.icon-tints .feature-card:nth-child(2n) .f-icon { background: linear-gradient(135deg, var(--pd-accent), var(--pd-success)); }
.icon-tints .feature-card:nth-child(3n) .f-icon { background: linear-gradient(135deg, var(--pd-orange), #FB923C); }

/* ---------- AI feature tiles (dark variant) ---------- */
.ai-section { background: var(--pd-navy); border-radius: var(--pd-radius-lg); padding: 72px 48px; position: relative; overflow: hidden; }
.ai-section::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 100% 0%, rgba(14,165,233,.25), transparent 50%); }
.ai-section .section-title, .ai-section h2, .ai-section h3 { color: #fff; }
.ai-section .section-subtitle { color: #A8B6D4; }
.ai-section .eyebrow { background: rgba(255,255,255,.1); color: #7DD3FC; }
.ai-tile { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--pd-radius-md); padding: 26px; height: 100%; backdrop-filter: blur(6px); }
.ai-tile .f-icon { background: linear-gradient(135deg, var(--pd-accent), #7C3AED); }
.ai-tile h5 { color: #fff; font-size: 16.5px; }
.ai-tile p { color: #A8B6D4; font-size: 14px; margin-bottom: 0; }

/* ---------- Solutions hub cards ---------- */
.solution-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-lg); padding: 32px; height: 100%; transition: all .3s ease; }
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--pd-shadow-md); border-color: rgba(29,78,216,.25); }
.solution-card .s-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.solution-card h5 { font-size: 19px; margin-bottom: 8px; }
.solution-card p { font-size: 14px; margin-bottom: 18px; }
.solution-card .s-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.solution-card .s-tags span { background: var(--pd-bg); border: 1px solid var(--pd-border); border-radius: 100px; padding: 4px 12px; font-size: 11.5px; font-weight: 600; color: var(--pd-muted); }
.solution-card a.s-link { font-size: 13.5px; font-weight: 700; color: var(--pd-primary); }
.solution-card a.s-link i { margin-left: 4px; transition: transform .2s ease; }
.solution-card:hover a.s-link i { transform: translateX(3px); }
.solution-card.coming-soon { opacity: .85; }
.solution-card.coming-soon .s-link { color: var(--pd-muted); }

/* ---------- Solution detail page ---------- */
.industry-hero { padding: 150px 0 60px; background: var(--pd-gradient-soft); }
.industry-hero .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.industry-hero h1 { font-size: clamp(28px, 4vw, 42px); margin: 14px 0; }
.industry-hero p.lead { font-size: 17px; max-width: 680px; }
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 15.5px; color: var(--pd-text); }
.why-list li i { color: var(--pd-success); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.stat-pill-row { display: flex; flex-wrap: wrap; gap: 16px; }
.stat-pill { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 20px 26px; text-align: center; flex: 1 1 160px; }
.stat-pill .sp-val { font-size: 26px; font-weight: 800; color: var(--pd-primary); }
.stat-pill .sp-lbl { font-size: 13px; color: var(--pd-muted); font-weight: 600; margin-top: 2px; }
.cap-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 28px; height: 100%; }
.cap-card .f-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.cap-card h6 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.cap-card p { font-size: 14px; color: var(--pd-muted); margin-bottom: 0; }

/* ---------- Industries ---------- */
.industry-card {
  background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md);
  padding: 28px 20px; text-align: center; height: 100%; transition: all .25s ease;
}
.industry-card:hover { border-color: var(--pd-primary); box-shadow: var(--pd-shadow-md); transform: translateY(-4px); }
.industry-card .i-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--pd-gradient-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--pd-primary); }
.industry-card h6 { font-size: 15px; margin-bottom: 0; font-weight: 700; }

/* ---------- Compliance badges ---------- */
.compliance-badge {
  background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md);
  padding: 22px 16px; text-align: center; height: 100%;
}
.compliance-badge .c-icon { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 12px; background: rgba(16,185,129,.1); color: var(--pd-success); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.compliance-badge .c-title { font-weight: 800; font-size: 14.5px; margin-bottom: 2px; }
.compliance-badge .c-sub { font-size: 12px; color: var(--pd-muted); margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md);
  padding: 30px; height: 100%;
}
.testimonial-card .stars { color: var(--pd-orange); font-size: 13px; margin-bottom: 14px; }
.testimonial-card p.quote { color: var(--pd-text); font-size: 15px; margin-bottom: 22px; }
.testimonial-card .t-person { display: flex; align-items: center; gap: 12px; }
.testimonial-card .t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--pd-gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; }
.testimonial-card .t-name { font-weight: 700; font-size: 14px; margin-bottom: 0; }
.testimonial-card .t-role { font-size: 12.5px; color: var(--pd-muted); margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--pd-gradient); border-radius: var(--pd-radius-lg); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content:""; position:absolute; width:340px; height:340px; background: rgba(255,255,255,.08); border-radius:50%; top:-150px; right:-100px; }
.final-cta::after { content:""; position:absolute; width:220px; height:220px; background: rgba(249,115,22,.18); border-radius:50%; bottom:-100px; left:-60px; }
.final-cta h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; position: relative; z-index: 1; }
.final-cta p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; position: relative; z-index: 1; }
.final-cta .cta-actions { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta-reach { position: relative; z-index: 1; margin: 26px 0 0; font-size: 14px; color: rgba(255,255,255,.75); }
.final-cta-reach a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.final-cta-reach a:hover { color: #fff; opacity: .85; }

/* ---------- Pricing ---------- */
.pricing-toggle { display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--pd-border); border-radius: 100px; padding: 6px; box-shadow: var(--pd-shadow-sm); }
.pricing-toggle .ptoggle-label { padding: 9px 22px; font-weight: 700; font-size: 14.5px; border-radius: 100px; cursor: pointer; color: var(--pd-muted); transition: all .2s ease; }
.pricing-toggle .ptoggle-label.active { background: var(--pd-gradient); color: #fff; box-shadow: var(--pd-shadow-primary); }
.pricing-toggle .save-badge { background: var(--pd-orange-light); color: var(--pd-orange); font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 100px; margin-left: 4px; }

.currency-toggle { display: inline-flex; align-items: center; gap: 2px; background: #fff; border: 1px solid var(--pd-border); border-radius: 100px; padding: 6px; box-shadow: var(--pd-shadow-sm); }
.currency-toggle .ctoggle-label { padding: 9px 18px; font-weight: 700; font-size: 13.5px; border-radius: 100px; cursor: pointer; color: var(--pd-muted); transition: all .2s ease; }
.currency-toggle .ctoggle-label.active { background: var(--pd-navy); color: #fff; }

.plan-tabs { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--pd-border); border-radius: 100px; padding: 6px; box-shadow: var(--pd-shadow-sm); }
.plan-tabs .plantab-label { padding: 12px 30px; font-weight: 800; font-size: 15.5px; border-radius: 100px; cursor: pointer; color: var(--pd-muted); transition: all .2s ease; }
.plan-tabs .plantab-label.active { background: var(--pd-gradient); color: #fff; box-shadow: var(--pd-shadow-primary); }

.plan-tab-content { display: none; }
.plan-tab-content.active { display: block; }

.seat-calc { background: var(--pd-bg); border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 16px 18px; margin-bottom: 22px; }
.seat-calc label { display: block; font-size: 12.5px; font-weight: 700; color: var(--pd-text); margin-bottom: 10px; }
.seat-calc label .seat-min { color: var(--pd-muted); font-weight: 600; }
.seat-stepper { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.seat-stepper .seat-btn { width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid var(--pd-border); background: #fff; font-size: 18px; font-weight: 700; color: var(--pd-primary); cursor: pointer; line-height: 1; }
.seat-stepper .seat-btn:hover { border-color: var(--pd-primary); background: rgba(29,78,216,.05); }
.seat-stepper input[type="number"] { width: 64px; text-align: center; border: 1.5px solid var(--pd-border); border-radius: 8px; padding: 7px 4px; font-weight: 700; font-size: 15px; }
.seat-stepper input[type="number"]::-webkit-outer-spin-button, .seat-stepper input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.seat-total { font-size: 14px; font-weight: 800; color: var(--pd-text); }
.seat-total .cur, .seat-total .per { font-weight: 600; color: var(--pd-muted); font-size: 13px; }
.seat-total .seat-total-num { font-size: 17px; color: var(--pd-primary); margin: 0 2px; }

.seat-storage-total { font-size: 12.5px; font-weight: 600; color: var(--pd-muted); margin-top: 6px; padding-top: 10px; border-top: 1px dashed var(--pd-border); }
.seat-storage-total .storage-total-num, .seat-storage-total .storage-total-unit { font-weight: 800; color: var(--pd-text); }

/* Responsive card grid — replaces the old fixed 3-column Bootstrap row so any number of
   plans (2, 3, 4+, coming live from the database) wraps cleanly without an orphaned card
   stranded alone in the last row. Cards keep a comfortable, consistent width and center
   themselves regardless of count. */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); justify-content: center; gap: 28px; align-items: stretch; }
.price-grid-item { display: flex; }

/* At desktop widths, lock each tab's grid to its actual plan count (columns sized as
   equal fractions, no fixed min-width) so the last card — e.g. Enterprise on the
   Business tab — sits in the same row instead of wrapping onto its own line. Narrower
   viewports keep the auto-fit wrapping behavior above. */
@media (min-width: 1200px) {
    [data-plan-content="business"] .price-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
    [data-plan-content="business"] .price-card { padding: 30px 20px; }
    [data-plan-content="individual"] .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.price-card { background: #fff; border: 1.5px solid var(--pd-border); border-radius: var(--pd-radius-lg); padding: 38px 32px; width: 100%; position: relative; transition: all .3s ease; display: flex; flex-direction: column; }
.price-card:hover { box-shadow: var(--pd-shadow-md); }
.price-card.featured { border-color: var(--pd-primary); box-shadow: var(--pd-shadow-lg); transform: scale(1.02); }
.price-card.custom-plan { background: var(--pd-bg); border-style: dashed; }
.price-card .popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--pd-orange); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 18px; border-radius: 100px; letter-spacing: .02em; white-space: nowrap; }
.price-card .p-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--pd-gradient-soft); color: var(--pd-primary); display:flex; align-items:center; justify-content:center; font-size: 20px; margin-bottom: 18px; }
.price-card.featured .p-icon { background: var(--pd-gradient); color: #fff; }
.price-card h4 { font-size: 21px; margin-bottom: 2px; }
.price-card .p-tier { font-size: 12px; font-weight: 700; color: var(--pd-accent); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px; }
.price-card .p-desc { font-size: 13.5px; color: var(--pd-muted); margin-bottom: 22px; }
.price-card .p-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-card .p-amount .cur { font-size: 20px; font-weight: 700; color: var(--pd-text); align-self: flex-start; margin-top: 6px; }
.price-card .p-amount .num { font-size: 46px; font-weight: 800; color: var(--pd-text); line-height: 1; }
.price-card .p-amount .per { font-size: 14.5px; color: var(--pd-muted); font-weight: 600; }
.price-card .p-annual-note { font-size: 12.5px; color: var(--pd-muted); margin-bottom: 24px; }
.price-card .billed-note .cur, .price-card .billed-note .num { font-weight: 700; color: var(--pd-text); }
.price-card ul.p-features { list-style: none; padding: 0; margin: 0 0 16px; flex: 1 1 auto; }
.price-card ul.p-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; padding: 8px 0; border-bottom: 1px dashed var(--pd-border); }
.price-card ul.p-features li:last-child { border-bottom: none; }
.price-card ul.p-features li i { color: var(--pd-success); margin-top: 3px; }
.price-card .more-features-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--pd-primary); text-decoration: none; margin-bottom: 20px; }
.price-card .more-features-link:hover { text-decoration: underline; }
.price-card .more-features-link i { font-size: 11px; }
.price-card .btn { width: 100%; text-align: center; margin-top: auto; }

.price-card .annual-price, .price-card .monthly-price { display: none; }
.billing-monthly .price-card .monthly-price { display: block; }
.billing-annual .price-card .annual-price { display: block; }
.billing-monthly .annual-note, .billing-annual .monthly-note { display:none; }

/* ---------- Trust strip ---------- */
.trust-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: var(--pd-bg); border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); }
.trust-item i { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.trust-item strong { display: block; font-size: 14.5px; color: var(--pd-text); margin-bottom: 2px; }
.trust-item span { display: block; font-size: 12.5px; color: var(--pd-muted); }

.trial-banner { background: var(--pd-bg); border: 1.5px dashed var(--pd-border); border-radius: var(--pd-radius-md); padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trial-banner h5 { margin-bottom: 4px; font-size: 18px; }
.trial-banner p { margin-bottom: 0; font-size: 14px; }

/* ---------- Comparison table ---------- */
.comparison-wrap { overflow-x: auto; border-radius: var(--pd-radius-md); border: 1px solid var(--pd-border); background: #fff; }
table.comparison-table { width: 100%; border-collapse: collapse; min-width: 760px; }
table.comparison-table thead th { background: var(--pd-bg); padding: 22px 20px; font-size: 14px; border-bottom: 1px solid var(--pd-border); }
table.comparison-table thead th .plan-name { display: block; font-size: 16px; font-weight: 800; color: var(--pd-text); margin-bottom: 4px; }
table.comparison-table thead th .plan-price { display: block; font-size: 13px; color: var(--pd-muted); font-weight: 600; }
table.comparison-table thead th:first-child { text-align: left; min-width: 240px; }
table.comparison-table th, table.comparison-table td { text-align: center; padding: 16px 20px; border-bottom: 1px solid var(--pd-border); font-size: 14px; }
table.comparison-table td:first-child, table.comparison-table th:first-child { text-align: left; color: var(--pd-text); font-weight: 600; }
table.comparison-table td:first-child small { margin-top: 3px; font-size: 12px; line-height: 1.4; }
table.comparison-table tbody tr:hover { background: rgba(29,78,216,.03); }
table.comparison-table .cat-row td { background: var(--pd-bg); font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--pd-primary); }
table.comparison-table i.fa-check-circle { color: var(--pd-success); font-size: 16px; }
table.comparison-table i.fa-times { color: #CBD5E1; font-size: 14px; }
table.comparison-table .featured-col { background: rgba(29,78,216,.04); }

/* ---------- FAQ / Accordion ---------- */
.accordion-pd .accordion-item { border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md) !important; margin-bottom: 14px; overflow: hidden; }
.accordion-pd .accordion-button { font-weight: 700; font-size: 15.5px; padding: 20px 24px; background: #fff; color: var(--pd-text); }
.accordion-pd .accordion-button:not(.collapsed) { color: var(--pd-primary); background: rgba(29,78,216,.04); box-shadow: none; }
.accordion-pd .accordion-button:focus { box-shadow: none; }
.accordion-pd .accordion-button::after { background-size: 16px; }
.accordion-pd .accordion-body { padding: 4px 24px 22px; font-size: 14.5px; color: var(--pd-muted); }

.faq-cat-pill { padding: 10px 20px; border-radius: 100px; border: 1px solid var(--pd-border); background: #fff; font-weight: 600; font-size: 14px; color: var(--pd-muted); cursor: pointer; transition: all .2s ease; }
.faq-cat-pill.active, .faq-cat-pill:hover { background: var(--pd-gradient); color: #fff; border-color: transparent; }

/* ---------- Help Center / Knowledge Base ---------- */
.kb-hero { background: var(--pd-gradient); padding: 130px 0 90px; text-align: center; position: relative; overflow: hidden; }
.kb-hero::before { content:""; position:absolute; width:380px; height:380px; background: rgba(255,255,255,.08); border-radius:50%; top:-180px; left:-100px; }
.kb-hero::after { content:""; position:absolute; width:260px; height:260px; background: rgba(249,115,22,.18); border-radius:50%; bottom:-140px; right:-60px; }
.kb-hero .breadcrumb-pd { position: relative; z-index: 1; color: rgba(255,255,255,.75); }
.kb-hero .breadcrumb-pd a { color: rgba(255,255,255,.75); }
.kb-hero .breadcrumb-pd a:hover { color: #fff; }
.kb-hero h1 { color: #fff; position: relative; z-index: 1; font-size: clamp(28px,4vw,42px); margin-bottom: 10px; }
.kb-hero p { color: rgba(255,255,255,.85); position: relative; z-index: 1; margin-bottom: 32px; }
.kb-search { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.kb-search .input-group { background: #fff; border-radius: 100px; padding: 6px 6px 6px 22px; box-shadow: var(--pd-shadow-lg); }
.kb-search input { border: none; box-shadow: none; font-size: 15px; }
.kb-search input:focus { box-shadow: none; }
.kb-search button { border-radius: 100px !important; padding: 11px 28px; }

.kb-article-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 28px; height: 100%; transition: all .25s ease; }
.kb-article-card:hover { transform: translateY(-4px); box-shadow: var(--pd-shadow-md); border-color: rgba(29,78,216,.25); }
.kb-article-card .a-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--pd-gradient-soft); color: var(--pd-primary); display:flex; align-items:center; justify-content:center; font-size: 18px; margin-bottom: 16px; }
.kb-article-card h6 { font-size: 16px; margin-bottom: 8px; }
.kb-article-card p { font-size: 13.5px; margin-bottom: 14px; }
.kb-article-card a.read-more { font-size: 13.5px; font-weight: 700; color: var(--pd-primary); }
.kb-article-card a.read-more i { transition: transform .2s ease; margin-left: 4px; }
.kb-article-card:hover a.read-more i { transform: translateX(3px); }

.kb-cat-block { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 26px; height: 100%; }
.kb-cat-block .cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.kb-cat-block .cat-head .c-ico { width: 42px; height: 42px; border-radius: 11px; display:flex; align-items:center; justify-content:center; font-size:17px; color:#fff; background: var(--pd-gradient); }
.kb-cat-block .cat-head h6 { margin-bottom: 0; font-size: 16px; }
.kb-cat-block ul { list-style: none; padding: 0; margin: 0; }
.kb-cat-block ul li { padding: 7px 0; border-bottom: 1px solid var(--pd-bg); }
.kb-cat-block ul li:last-child { border-bottom: none; }
.kb-cat-block ul li a { font-size: 14px; color: var(--pd-text); font-weight: 500; }
.kb-cat-block ul li a:hover { color: var(--pd-primary); }
.kb-cat-block .see-all { display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--pd-primary); }

.kb-help-banner { background: var(--pd-navy); border-radius: var(--pd-radius-lg); padding: 54px 40px; text-align: center; color: #fff; }
.kb-help-banner h3 { color: #fff; margin-bottom: 10px; }
.kb-help-banner p { color: #A8B6D4; margin-bottom: 26px; }

/* ---------- Contact ---------- */
.contact-info-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 26px; display: flex; gap: 16px; align-items: flex-start; height: 100%; }
.contact-info-card .ci-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.contact-info-card h6 { font-size: 15.5px; margin-bottom: 4px; }
.contact-info-card p { font-size: 13.5px; margin-bottom: 0; }

.contact-form-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-lg); padding: 40px; box-shadow: var(--pd-shadow-md); }
.form-label-pd { font-weight: 700; font-size: 13.5px; margin-bottom: 7px; color: var(--pd-text); }
.form-control-pd, .form-select-pd { border: 1.5px solid var(--pd-border); border-radius: 10px; padding: 11px 16px; font-size: 14.5px; }
.form-control-pd:focus, .form-select-pd:focus { border-color: var(--pd-primary); box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
.inquiry-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.inquiry-pill input { display: none; }
.inquiry-pill label { display: block; padding: 10px 18px; border: 1.5px solid var(--pd-border); border-radius: 100px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all .2s ease; }
.inquiry-pill input:checked + label { background: var(--pd-gradient); color: #fff; border-color: transparent; }

/* ---------- About ---------- */
.value-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 30px; height: 100%; }
.value-card .v-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 18px; }
.timeline-pd { position: relative; padding-left: 32px; border-left: 2px dashed var(--pd-border); }
.timeline-pd .t-item { position: relative; margin-bottom: 32px; }
.timeline-pd .t-item::before { content:""; position: absolute; left: -41px; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--pd-gradient); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--pd-primary); }
.timeline-pd .t-year { font-weight: 800; color: var(--pd-primary); font-size: 14px; }
.team-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 28px; text-align: center; height: 100%; }
.team-card .t-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--pd-gradient); color: #fff; font-weight: 800; font-size: 28px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.team-card h6 { margin-bottom: 2px; font-size: 16px; }
.team-card .role { font-size: 13px; color: var(--pd-primary); font-weight: 700; margin-bottom: 12px; }
.team-card .socials a { width: 32px; height: 32px; border-radius: 50%; background: var(--pd-bg); color: var(--pd-muted); display: inline-flex; align-items: center; justify-content: center; margin: 0 3px; font-size: 13px; }
.team-card .socials a:hover { background: var(--pd-primary); color: #fff; }

/* ---------- Page header (about/pricing/faq/contact sub-pages) ---------- */
.page-header { padding: 150px 0 70px; text-align: center; background: var(--pd-gradient-soft); position: relative; }
.page-header h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.page-header p { font-size: 16.5px; max-width: 560px; margin: 0 auto; }
.breadcrumb-pd { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--pd-muted); margin: 0 0 18px; padding: 0; list-style: none; }
.breadcrumb-pd a { color: var(--pd-muted); text-decoration: none; }
.breadcrumb-pd a:hover { color: var(--pd-primary); }
.breadcrumb-pd-item, .breadcrumb-pd-sep { display: flex; align-items: center; }

/* ---------- Footer ---------- */
.pd-footer { background: var(--pd-navy); color: #C2CDE3; padding: 80px 0 0; }
.pd-footer h6, .pd-footer .footer-col-title { color: #fff; font-size: 14.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 22px; }
.pd-footer a, .pd-footer .footer-links a { color: #A8B6D4; font-size: 14.5px; display: block; margin-bottom: 12px; transition: color .2s ease; }
.pd-footer a:hover { color: #fff; }
.pd-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.pd-footer .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 21px; color: #fff; margin-bottom: 16px; }
.pd-footer .footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.pd-footer p.tagline, .pd-footer .footer-tagline { font-size: 14.5px; color: #A8B6D4; max-width: 280px; }
.pd-footer .footer-contact-info { list-style: none; padding: 0; margin: 16px 0 20px; }
.pd-footer .footer-contact-info li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14.5px; }
.pd-footer .footer-contact-info li i { color: var(--pd-accent, #0EA5E9); width: 16px; }
.pd-footer .footer-contact-info li a { color: #C2CDE3; margin-bottom: 0; font-weight: 600; }
.pd-footer .footer-contact-info li a:hover { color: #fff; }
.pd-footer .social-icons a, .pd-footer .footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; margin-bottom: 0; }
.pd-footer .social-icons a:hover, .pd-footer .footer-social a:hover { background: var(--pd-primary); color: #fff; }
.newsletter-input-grp { background: rgba(255,255,255,.07); border-radius: 100px; padding: 5px 5px 5px 18px; display: flex; align-items: center; max-width: 320px; }
.newsletter-input-grp input { background: transparent; border: none; color: #fff; font-size: 13.5px; flex: 1; outline: none; }
.newsletter-input-grp input::placeholder { color: #8492B5; }
.newsletter-input-grp button { border-radius: 100px; padding: 9px 18px; font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 56px; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13.5px; color: #8492B5; }
.footer-bottom a { display: inline; margin: 0; color: #8492B5; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Misc ---------- */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; border-radius: 50%; background: var(--pd-gradient); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--pd-shadow-primary); z-index: 999; opacity: 0; visibility: hidden; transition: all .3s ease; border: none; }
.back-to-top.show { opacity: 1; visibility: visible; }

.quick-contact-fab { position: fixed; bottom: 28px; left: 28px; width: 52px; height: 52px; border-radius: 50%; background: var(--pd-success, #10B981); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px; box-shadow: 0 10px 24px rgba(16,185,129,.35); z-index: 999; text-decoration: none; animation: pdPulse 2.4s infinite; }
.quick-contact-fab:hover { color: #fff; animation: none; transform: scale(1.06); }
.quick-contact-fab .quick-contact-tip { position: absolute; right: 62px; top: 50%; transform: translateY(-50%); background: var(--pd-text, #0F172A); color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; visibility: hidden; transition: all .2s ease; }
.quick-contact-fab:hover .quick-contact-tip { opacity: 1; visibility: visible; right: 66px; }
@keyframes pdPulse { 0%, 100% { box-shadow: 0 10px 24px rgba(16,185,129,.35); } 50% { box-shadow: 0 10px 24px rgba(16,185,129,.6), 0 0 0 8px rgba(16,185,129,.12); } }
@media (max-width: 767px) { .quick-contact-fab { width: 46px; height: 46px; bottom: 20px; left: 16px; } .quick-contact-fab .quick-contact-tip { display: none; } .back-to-top { bottom: 20px; right: 16px; } }

::selection { background: rgba(29,78,216,.2); }

.divider-soft { height: 1px; background: var(--pd-border); margin: 0; }

/* ---------- Blog ---------- */
.blog-card { background: #fff; border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); height: 100%; overflow: hidden; transition: all .25s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--pd-shadow-md); border-color: rgba(29,78,216,.25); }
.blog-card .blog-cover { height: 160px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.blog-card .blog-card-body { padding: 24px; }
.blog-card .blog-meta { font-size: 12.5px; color: var(--pd-muted); font-weight: 600; margin-bottom: 10px; }
.blog-card h5 { font-size: 17px; margin-bottom: 10px; }
.blog-card p { font-size: 14px; margin-bottom: 16px; }
.blog-tag-pill { display: inline-block; background: var(--pd-bg); border: 1px solid var(--pd-border); border-radius: 100px; padding: 4px 12px; font-size: 11.5px; font-weight: 600; color: var(--pd-muted); margin: 0 6px 6px 0; }
.blog-tag-pill:hover { background: var(--pd-gradient); color: #fff; border-color: transparent; }
.blog-detail-body { font-size: 16px; line-height: 1.85; color: var(--pd-text); }
.blog-detail-body h2, .blog-detail-body h3 { margin-top: 36px; }
.blog-detail-body p { color: var(--pd-text); }
.blog-detail-body ul, .blog-detail-body ol { color: var(--pd-text); }
.blog-share a { width: 38px; height: 38px; border-radius: 50%; background: var(--pd-bg); color: var(--pd-muted); display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; }
.blog-share a:hover { background: var(--pd-primary); color: #fff; }

/* ---------- Legal pages ---------- */
.legal-body h4 { font-size: 18.5px; font-weight: 800; color: var(--pd-text); scroll-margin-top: 100px; }
.legal-body h5 { font-size: 16px; font-weight: 800; color: var(--pd-text); scroll-margin-top: 100px; }
.legal-body p, .legal-body li { color: var(--pd-muted); font-size: 15px; line-height: 1.75; }
.legal-body table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 18px 0; }
.legal-body table th { background: var(--pd-bg); text-align: left; padding: 10px 14px; font-weight: 700; color: var(--pd-text); border: 1px solid var(--pd-border); }
.legal-body table td { padding: 10px 14px; border: 1px solid var(--pd-border); color: var(--pd-muted); vertical-align: top; }
.legal-toc { background: var(--pd-bg); border: 1px solid var(--pd-border); border-radius: var(--pd-radius-md); padding: 22px 26px; }
.legal-toc h6 { font-weight: 800; color: var(--pd-text); text-transform: uppercase; letter-spacing: .03em; font-size: 12.5px; }
.legal-toc ol { columns: 2; column-gap: 24px; }
.legal-toc ol li { break-inside: avoid; margin-bottom: 6px; }
.legal-toc a { color: var(--pd-muted); font-size: 14px; text-decoration: none; }
.legal-toc a:hover { color: var(--pd-primary); }
.legal-pill-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.legal-pill-nav a { display: inline-block; padding: 6px 14px; border-radius: 100px; background: var(--pd-bg); border: 1px solid var(--pd-border); font-size: 13px; font-weight: 600; color: var(--pd-muted); text-decoration: none; }
.legal-pill-nav a.active, .legal-pill-nav a:hover { background: var(--pd-gradient); border-color: transparent; color: #fff; }
.legal-related-link { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--pd-radius-md); border: 1px solid var(--pd-border); font-size: 13.5px; font-weight: 600; color: var(--pd-text); text-decoration: none; height: 100%; transition: all .2s ease; }
.legal-related-link i { color: var(--pd-primary); width: 16px; }
.legal-related-link:hover { border-color: var(--pd-primary); background: var(--pd-gradient-soft); color: var(--pd-primary); }
.legal-callout { background: var(--pd-gradient-soft); border-left: 3px solid var(--pd-primary); border-radius: var(--pd-radius-sm); padding: 16px 20px; font-size: 14.5px; color: var(--pd-text); margin: 18px 0; }
.legal-hub-card { display: block; height: 100%; padding: 26px; border-radius: var(--pd-radius-md); border: 1px solid var(--pd-border); background: #fff; text-decoration: none; transition: all .25s ease; }
.legal-hub-card:hover { transform: translateY(-4px); box-shadow: var(--pd-shadow-md); border-color: rgba(29,78,216,.25); }
.legal-hub-card .lh-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--pd-gradient-soft); color: var(--pd-primary); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.legal-hub-card h5 { font-size: 16.5px; margin-bottom: 8px; color: var(--pd-text); }
.legal-hub-card p { font-size: 13.5px; color: var(--pd-muted); margin-bottom: 0; }
@media (max-width: 767px) { .legal-toc ol { columns: 1; } }
