* { margin: 0; padding: 0; box-sizing: border-box; }

/* =============================================
   SMOOTH SCROLLING
   ============================================= */
html {
  scroll-behavior: smooth;
}

:root {
  --bg: #0f0f1a;
  --surface: #1a1a2e;
  --surface2: #222240;
  --text: #e0e0e0;
  --text-muted: #888;
  --accent: #e94560;
  --good: #27ae60;
  --warn: #f39c12;
  --bad: #e74c3c;
  --border: #333;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* =============================================
   LEGACY AUDIT TOOL STYLES (unchanged)
   ============================================= */

.container { max-width: 800px; margin: 0 auto; padding: 40px 20px; }

header { text-align: center; margin-bottom: 40px; }
header h1 { font-size: 2.5rem; color: #fff; letter-spacing: -1px; }
.subtitle { color: var(--text-muted); font-size: 1.1rem; margin-top: 8px; }

.input-group { display: flex; gap: 10px; }

#url-input {
  flex: 1; padding: 14px 18px; font-size: 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; color: #fff; outline: none; transition: border-color 0.2s;
}
#url-input:focus { border-color: var(--accent); }

#submit-btn {
  padding: 14px 28px; font-size: 1rem; font-weight: 600;
  background: var(--accent); color: #fff; border: none;
  border-radius: 8px; cursor: pointer; transition: opacity 0.2s; white-space: nowrap;
}
#submit-btn:hover { opacity: 0.9; }
#submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.hint { color: var(--text-muted); font-size: 0.85rem; margin-top: 10px; text-align: center; }

.spinner {
  width: 48px; height: 48px; border: 4px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

#loading-section { text-align: center; padding: 60px 0; }
#loading-message { font-size: 1.1rem; color: #fff; }

.error-box {
  background: rgba(231, 76, 60, 0.1); border: 1px solid var(--bad);
  border-radius: 8px; padding: 20px; text-align: center;
}
.error-box button {
  margin-top: 12px; padding: 10px 24px; background: var(--accent);
  color: #fff; border: none; border-radius: 6px; cursor: pointer;
}

.score-hero { text-align: center; padding: 40px 0; }
.score-circle { font-size: 5rem; font-weight: 800; line-height: 1; }
.score-label { font-size: 1.2rem; color: var(--text-muted); margin-top: 4px; }
.score-site { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 30px; }
.category-card { background: var(--surface); border-radius: 10px; padding: 20px; }
.category-card h3 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }

.score-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.score-fill { height: 100%; border-radius: 4px; transition: width 0.8s ease; }
.score-num { font-size: 1.5rem; font-weight: 700; }

.section-card { background: var(--surface); border-radius: 10px; padding: 24px; margin-bottom: 20px; }
.section-card h2 { font-size: 1.3rem; margin-bottom: 16px; color: #fff; }
.section-card h3 { font-size: 1rem; margin: 16px 0 8px; }

.rec-heading { padding: 4px 0; }
.rec-quick { color: var(--good); }
.rec-medium { color: var(--warn); }
.rec-strategic { color: var(--accent); }

.rec-item { background: var(--surface2); border-radius: 6px; padding: 12px 14px; margin-bottom: 8px; }
.rec-item .rec-action { font-size: 0.95rem; color: #fff; }
.rec-item .rec-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.page-item { border-bottom: 1px solid var(--border); padding: 14px 0; cursor: pointer; }
.page-item:last-child { border-bottom: none; }
.page-header { display: flex; justify-content: space-between; align-items: center; }
.page-title { font-size: 0.95rem; color: #fff; }
.page-url { font-size: 0.8rem; color: var(--text-muted); }
.page-score { font-weight: 700; font-size: 1.1rem; }
.page-issues { display: none; margin-top: 8px; padding-left: 12px; }
.page-issues.open { display: block; }
.issue { font-size: 0.85rem; color: var(--bad); margin-bottom: 4px; }

.actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }

.btn-primary {
  padding: 14px 32px; font-size: 1rem; font-weight: 600;
  background: var(--accent); color: #fff; border: none; border-radius: 8px; cursor: pointer;
}
.btn-secondary {
  padding: 14px 32px; font-size: 1rem; background: var(--surface);
  color: var(--text); border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
}

.hidden { display: none !important; }

@media (max-width: 600px) {
  header h1 { font-size: 1.8rem; }
  .input-group { flex-direction: column; }
  .category-grid { grid-template-columns: 1fr; }
  .score-circle { font-size: 3.5rem; }
  .actions { flex-direction: column; }
}

/* =============================================
   LANDING PAGE STYLES
   ============================================= */

/* Shared layout */
.lp-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-section {
  padding: 80px 0;
}

.lp-section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.lp-section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA button */
.lp-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.lp-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.lp-cta-btn--sm {
  padding: 12px 28px;
  font-size: 1rem;
}

/* ----- HERO ----- */
.lp-hero {
  background: linear-gradient(160deg, #0f0f1a 0%, #16162a 60%, #1a0f1a 100%);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.lp-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(233, 69, 96, 0.15);
  border: 1px solid rgba(233, 69, 96, 0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lp-hero-headline {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.lp-hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.lp-cta-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----- PROBLEM ----- */
.lp-problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.lp-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.lp-stat-card:hover {
  border-color: var(--accent);
}

.lp-stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.lp-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-problem-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.lp-problem-text p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

/* ----- WHAT WE CHECK ----- */
.lp-checks {
  background: var(--bg);
}

.lp-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-check-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.15s;
}
.lp-check-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.lp-check-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1;
}

.lp-check-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.lp-check-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- AUDIT SECTION ----- */
.lp-audit-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audit-tool-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

#input-section {
  margin-bottom: 0;
}

/* ----- SOCIAL PROOF ----- */
.lp-social {
  background: var(--bg);
}

.lp-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.lp-testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.lp-testimonial-stars {
  color: #f39c12;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.lp-testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.lp-testimonial-attr {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.lp-testimonial-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.6;
}

/* ----- FAQ ----- */
.lp-faq {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.lp-faq-item {
  border-bottom: 1px solid var(--border);
}
.lp-faq-item:last-child {
  border-bottom: none;
}

.lp-faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.lp-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.lp-faq-item summary:hover {
  color: var(--accent);
}

.lp-faq-answer {
  padding: 0 0 20px;
}
.lp-faq-answer p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ----- FOOTER ----- */
.lp-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  text-align: center;
}

.lp-footer-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.lp-footer .lp-cta-btn {
  margin-bottom: 32px;
}

.lp-footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* =============================================
   LANDING PAGE RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .lp-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .lp-hero { padding: 60px 0 50px; }

  .lp-hero-headline {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .lp-hero-sub { font-size: 1rem; }

  .lp-section { padding: 52px 0; }

  .lp-section-heading { font-size: 1.5rem; }

  .lp-stat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-stat-number { font-size: 2.2rem; }

  .lp-check-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audit-tool-wrapper {
    padding: 24px 16px;
  }

  .input-group { flex-direction: column; }

  .lp-footer-headline { font-size: 1.2rem; }
}

/* === Top Issues (Free Tier) === */
.top-issue-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.top-issue-item:last-child { border-bottom: none; }
.top-issue-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}
.top-issue-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  padding-top: 3px;
}

/* === Locked Section === */
.locked-section {
  position: relative;
  margin-top: 20px;
}
.locked-overlay {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 20px;
}
.locked-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.locked-overlay h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.locked-overlay > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.locked-includes {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 24px;
}
.locked-includes li {
  color: var(--text);
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.locked-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: 700;
}
.locked-cta {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.locked-cta:hover { opacity: 0.9; }
.locked-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.locked-blur {
  filter: blur(6px);
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}
.blur-placeholder {
  background: var(--surface2);
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =============================================
   PREMIUM VISUAL UPGRADE
   ============================================= */

/* ---- 1. HERO: Animated gradient background ---- */
@keyframes heroGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.lp-hero {
  background: linear-gradient(
    135deg,
    #0f0f1a 0%,
    #12102a 15%,
    #1a0d2e 30%,
    #0d1a2e 45%,
    #110f20 60%,
    #1a0f1a 75%,
    #140a1e 90%,
    #0f0f1a 100%
  ) !important;
  background-size: 400% 400% !important;
  animation: heroGradientShift 18s ease infinite;
  position: relative;
  overflow: hidden;
  border-bottom: none !important;
}

/* Radial glow behind headline */
.lp-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(233, 69, 96, 0.10) 0%, rgba(100, 40, 150, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero .lp-container {
  position: relative;
  z-index: 1;
}

/* ---- 2. FLOATING BACKGROUND ORBS ---- */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-35px, 25px) scale(1.08); }
  70%       { transform: translate(20px, -15px) scale(0.95); }
}
@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(25px, 35px) scale(1.06); }
}
@keyframes floatOrb4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%       { transform: translate(-20px, -30px) scale(1.04); }
  70%       { transform: translate(15px, 20px) scale(0.98); }
}

.bg-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(100, 40, 180, 0.05);
  top: -100px;
  left: -150px;
  animation: floatOrb1 22s ease-in-out infinite;
}
.bg-orb--2 {
  width: 380px;
  height: 380px;
  background: rgba(233, 69, 96, 0.04);
  top: 60px;
  right: -100px;
  animation: floatOrb2 28s ease-in-out infinite;
}
.bg-orb--3 {
  width: 280px;
  height: 280px;
  background: rgba(39, 174, 96, 0.03);
  bottom: 40px;
  left: 30%;
  animation: floatOrb3 34s ease-in-out infinite;
}
.bg-orb--4 {
  width: 200px;
  height: 200px;
  background: rgba(60, 100, 200, 0.04);
  bottom: 80px;
  right: 20%;
  animation: floatOrb4 26s ease-in-out infinite;
}

/* ---- 3. SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 4. CARD DEPTH + GLASS EFFECT ---- */
.lp-stat-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.lp-stat-card:hover {
  box-shadow: 0 8px 32px rgba(233, 69, 96, 0.18), 0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}
.lp-stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(135deg, rgba(233,69,96,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.lp-stat-card:hover::after { opacity: 1; }

.lp-check-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 1px 4px rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.lp-check-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(135deg, rgba(233,69,96,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.lp-check-card:hover::after { opacity: 1; }
.lp-check-card:hover {
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.15), 0 2px 8px rgba(0,0,0,0.25);
}

.lp-testimonial-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 1px 4px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.lp-testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 69, 96, 0.4);
  box-shadow: 0 10px 36px rgba(233, 69, 96, 0.14), 0 2px 8px rgba(0,0,0,0.25);
}

.category-card {
  box-shadow: 0 4px 18px rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: box-shadow 0.2s, transform 0.2s;
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.section-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ---- 5. CTA BUTTON GLOW ---- */
@keyframes ctaGlowPulse {
  0%, 100% { box-shadow: 0 0 0px rgba(233, 69, 96, 0); }
  50%       { box-shadow: 0 0 22px rgba(233, 69, 96, 0.55), 0 0 48px rgba(233, 69, 96, 0.2); }
}

.lp-cta-btn {
  animation: ctaGlowPulse 2.8s ease-in-out infinite;
}
.lp-cta-btn:hover {
  animation: none;
  box-shadow: 0 0 28px rgba(233, 69, 96, 0.65), 0 4px 16px rgba(0,0,0,0.3);
}

/* ---- 6. SCORE CIRCLE GLOW RING ---- */
@keyframes scoreRingPulse {
  0%, 100% { box-shadow: 0 0 0 0px rgba(233, 69, 96, 0.0); }
  50%       { box-shadow: 0 0 0 10px rgba(233, 69, 96, 0.08), 0 0 40px rgba(233, 69, 96, 0.18); }
}

.score-circle {
  display: inline-block;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  animation: scoreRingPulse 3s ease-in-out infinite;
  transition: box-shadow 0.3s;
}

/* ---- 7. TEXTURE OVERLAY (noise grain) ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---- 9. SECTION DIVIDERS ---- */
.lp-section-divider {
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, rgba(233,69,96,0.4) 50%, var(--accent) 70%, transparent 100%);
  opacity: 0.25;
  margin: 0;
}

/* Replace flat borders on sections with gradient feel */
.lp-problem {
  border-top: none !important;
  border-bottom: none !important;
}
.lp-audit-section {
  border-top: none !important;
  border-bottom: none !important;
}
.lp-faq {
  border-top: none !important;
  border-bottom: none !important;
}
.lp-footer {
  border-top: none !important;
}

/* Gradient pseudo-dividers via section top/bottom shadows */
.lp-problem,
.lp-audit-section,
.lp-faq {
  box-shadow:
    0 -1px 0 0 transparent,
    inset 0 1px 0 0 rgba(233,69,96,0.12),
    inset 0 -1px 0 0 rgba(233,69,96,0.12);
}

/* ---- STAGGER HELPERS for reveal cards ---- */
.reveal-stagger-1 { transition-delay: 0.05s; }
.reveal-stagger-2 { transition-delay: 0.13s; }
.reveal-stagger-3 { transition-delay: 0.21s; }
.reveal-stagger-4 { transition-delay: 0.29s; }

/* ---- AUDIT TOOL WRAPPER glass upgrade ---- */
.audit-tool-wrapper {
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---- Reduce motion support ---- */
@media (prefers-reduced-motion: reduce) {
  .lp-hero { animation: none !important; }
  .bg-orb { animation: none !important; }
  .lp-cta-btn { animation: none !important; }
  .score-circle { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* === Contact Modal === */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.hidden { display: none !important; }
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: #fff; }
.modal-box h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}
.modal-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  outline: none;
  margin-bottom: 10px;
  font-family: inherit;
}
#contact-form input:focus,
#contact-form textarea:focus { border-color: var(--accent); }
#contact-form input[readonly] { opacity: 0.6; }
.modal-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
}
.modal-submit:hover { opacity: 0.9; }
.cf-checkmark {
  font-size: 3rem;
  color: var(--good);
  text-align: center;
  margin-bottom: 12px;
}
#cf-success {
  text-align: center;
  padding: 20px 0;
}
#cf-success h3 {
  color: var(--good);
  margin-bottom: 8px;
}
#cf-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* === Hidden Admin Trigger === */
.admin-trigger {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  z-index: 9999;
  opacity: 0;
  cursor: default;
}
