/* ── Elementor Global Overrides ── */
.elementor-kit-* { --e-global-color-primary: hsl(217, 91%, 60%); }

.lgpd-section { padding: 5rem 1.5rem; }
@media(min-width:640px) { .lgpd-section { padding: 7rem 2rem; } }
.lgpd-container { max-width: 64rem; margin: 0 auto; }

/* ── Hero ── */
.lgpd-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: hsl(217 91% 60% / 0.05); border: 1px solid hsl(217 91% 60% / 0.1);
  border-radius: 9999px; padding: 0.375rem 1rem; font-size: 0.875rem;
  font-weight: 500; color: hsl(217, 91%, 60%);
}
.lgpd-hero-title { font-size: clamp(1.875rem, 4vw, 3.25rem); font-weight: 700; color: hsl(222, 47%, 11%); }
.lgpd-hero-title span { color: hsl(217, 91%, 60%); }
.lgpd-hero-subtitle { font-size: 1.125rem; color: hsl(215, 16%, 47%); max-width: 32rem; }
.lgpd-check-list { list-style: none; padding: 0; }
.lgpd-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.95rem; }
.lgpd-check-list li::before { content: "✓"; color: hsl(217, 91%, 60%); font-weight: 700; margin-top: 0.1em; }

/* ── CTA Button ── */
.lgpd-btn-primary {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: hsl(217, 91%, 60%); color: #fff; border: none; border-radius: 9999px;
  padding: 0.75rem 2rem; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s; text-decoration: none;
}
.lgpd-btn-primary:hover { filter: brightness(1.1); box-shadow: 0 4px 12px hsl(217 91% 60% / 0.3); }

/* ── Diagnostic Card ── */
.lgpd-diag-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 1.75rem; box-shadow: 0 12px 24px -6px rgba(15,23,42,0.12);
}
.lgpd-progress-bar { height: 6px; border-radius: 9999px; background: hsl(var(--muted)); overflow: hidden; }
.lgpd-progress-fill { height: 100%; border-radius: 9999px; transition: width 1s ease; }
.lgpd-progress-fill--red { background: hsl(var(--destructive)); }
.lgpd-progress-fill--accent { background: hsl(var(--accent)); }
.lgpd-progress-fill--primary { background: hsl(var(--primary)); }

/* ── FAQ ── */
.lgpd-faq-item { border-bottom: 1px solid hsl(214 32% 91% / 0.6); }
.lgpd-faq-item:last-child { border-bottom: none; }
.lgpd-faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; background: none; border: none; cursor: pointer;
  font-size: 0.95rem; font-weight: 500; color: hsl(222, 47%, 11%); text-align: left;
}
.lgpd-faq-trigger::after { content: "+"; font-size: 1.25rem; transition: transform 0.2s; }
.lgpd-faq-item.active .lgpd-faq-trigger::after { content: "−"; }
.lgpd-faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: hsl(215,16%,47%); font-size: 0.95rem; }
.lgpd-faq-item.active .lgpd-faq-content { max-height: 200px; padding-bottom: 1.5rem; }

/* ── Lead Form Section ── */
.lgpd-form-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: var(--radius); padding: 2rem; box-shadow: 0 2px 4px rgba(15,23,42,0.05);
}

/* ── Sticky Mobile CTA ── */
.lgpd-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: hsl(0 0% 100% / 0.9); backdrop-filter: blur(12px);
  border-top: 1px solid hsl(214 32% 91% / 0.6); padding: 0.75rem;
}
@media(min-width:640px) { .lgpd-sticky-cta { display: none; } }
.lgpd-sticky-cta .lgpd-btn-primary { width: 100%; justify-content: center; }

/* ── Nav ── */
.lgpd-header { position: sticky; top: 0; z-index: 40; background: hsl(0 0% 100% / 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid hsl(var(--border)); }
.lgpd-nav-menu { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.lgpd-nav-menu li a { font-size: 0.875rem; color: hsl(215,16%,47%); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.lgpd-nav-menu li a:hover { color: hsl(217,91%,60%); }
@media(max-width:768px) { .lgpd-nav-menu { display: none; } }
