/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #050810;
  --bg2:       #0c1120;
  --bg3:       #111827;
  --border:    rgba(0, 255, 140, 0.12);
  --green:     #00ff8c;
  --green2:    #00c96e;
  --text:      #e2e8f0;
  --text-muted:#8b99b5;
  --radius:    14px;
  --glow:      0 0 40px rgba(0, 255, 140, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green2); border-radius: 4px; }

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #000;
  box-shadow: 0 0 24px rgba(0, 255, 140, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 255, 140, 0.55); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: rgba(0, 255, 140, 0.08); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.w-full { width: 100%; justify-content: center; }

/* ─── GRADIENT TEXT ────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--green), #00c9ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--green); }

/* ─── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6%;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 38px; height: 38px; object-fit: contain; border-radius: 8px; }
.nav-brand { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 36px; }
.nav-links a { color: var(--text-muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }

.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* ─── SECTION COMMON ───────────────────────────────────── */
section { padding: 110px 6%; }

.section-header {
  text-align: center; margin-bottom: 70px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin: 14px 0 16px; }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

.section-tag {
  display: inline-block; padding: 5px 18px; border-radius: 50px;
  border: 1px solid var(--green); color: var(--green);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 130px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.hero-glow {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 255, 140, 0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { max-width: 780px; z-index: 1; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 255, 140, 0.08); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 18px;
  font-size: 0.82rem; font-weight: 600; color: var(--green);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; justify-content: center; }

.hero-stats { display: flex; align-items: center; gap: 24px; justify-content: center; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 42px; background: var(--border); }

.hero-visual {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.glow-ring {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(0, 255, 140, 0.2);
  box-shadow: 0 0 80px rgba(0, 255, 140, 0.12), inset 0 0 80px rgba(0, 255, 140, 0.06);
  animation: rotate 20s linear infinite;
}
.glow-ring::before {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(0, 255, 140, 0.12);
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-logo {
  width: 280px; height: 280px; object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 255, 140, 0.5));
  animation: float 6s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* ─── FEATURES ─────────────────────────────────────────── */
.features { background: var(--bg2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card:hover { border-color: rgba(0, 255, 140, 0.35); transform: translateY(-6px); box-shadow: var(--glow); }
.feature-card--highlight { border-color: rgba(0, 255, 140, 0.3); background: linear-gradient(135deg, rgba(0,255,140,0.05), var(--bg3)); }

.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(0, 255, 140, 0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--green); margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }

.card-glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,140,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── HOW IT WORKS ─────────────────────────────────────── */
.steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

.step {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; flex: 1; min-width: 220px; max-width: 300px;
  text-align: center; transition: all 0.3s;
}
.step:hover { border-color: rgba(0,255,140,0.3); transform: translateY(-6px); box-shadow: var(--glow); }

.step-num {
  font-size: 3rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--green), #00c9ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 18px;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.step-connector {
  color: var(--green); opacity: 0.4; font-size: 1.4rem;
  align-self: center; padding-top: 4px;
}

/* ─── PRICING ──────────────────────────────────────────── */
.pricing { background: var(--bg2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; max-width: 1000px; margin: 0 auto;
}

.pricing-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card--popular {
  border-color: rgba(0,255,140,0.4);
  background: linear-gradient(160deg, rgba(0,255,140,0.06), var(--bg3));
  box-shadow: 0 0 50px rgba(0,255,140,0.12);
}

.popular-badge {
  display: inline-block; background: linear-gradient(135deg, var(--green), var(--green2));
  color: #000; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 18px;
}

.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
.price { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 10px; }
.currency { font-size: 1.4rem; font-weight: 700; color: var(--green); align-self: flex-start; margin-top: 8px; }
.price-num { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--text); }
.period { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.price-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 26px; }

.price-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.price-features li i.fa-check { color: var(--green); }
.price-features li i.fa-xmark { color: #4a5568; }
.price-features li.disabled { color: var(--text-muted); }

/* ─── CTA ──────────────────────────────────────────────── */
.cta {
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(0,255,140,0.04), var(--bg));
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,255,140,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
.cta-content > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 38px; }

.cta-form {
  display: flex; gap: 12px; max-width: 520px; margin: 0 auto 16px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 6px 6px 22px;
}
.cta-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 0.95rem; font-family: 'Inter', sans-serif;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-note { color: var(--text-muted); font-size: 0.82rem; }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 6% 30px; }

.footer-top { display: flex; gap: 60px; flex-wrap: wrap; margin-bottom: 60px; }
.footer-brand { flex: 1; min-width: 220px; }
.footer-brand .nav-brand { display: block; font-size: 1.4rem; font-weight: 800; margin: 12px 0 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; max-width: 260px; margin-bottom: 22px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; }

.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  transition: all 0.3s;
}
.socials a:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 4px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.84rem;
}

/* ─── SCROLL REVEAL ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ───────────────────────────────────────── */

/* Tablet landscape & small desktop */
@media (max-width: 1024px) {
  .navbar { padding: 16px 4%; }
  section { padding: 90px 4%; }
  .footer { padding: 70px 4% 28px; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .hero { padding-top: 110px; }
  .hero-btns { flex-wrap: wrap; gap: 12px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); align-self: center; }
  .step { max-width: 100%; width: 100%; }
  .footer-top { gap: 40px; }
  .footer-links { gap: 40px; }
}

/* Large mobile */
@media (max-width: 700px) {
  .navbar { padding: 14px 5%; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    padding: 24px 5%; gap: 22px; z-index: 998;
  }
  .nav-links.open { display: flex; }
  .navbar .btn-outline { display: none; }
  .hamburger { display: block; }

  section { padding: 72px 5%; }
  .section-header { margin-bottom: 48px; }

  .features-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }

  .cta-form {
    flex-direction: column; border-radius: var(--radius);
    padding: 16px; gap: 10px;
  }
  .cta-input { padding: 6px 0; }
  .cta-form .btn { border-radius: var(--radius); width: 100%; justify-content: center; }

  .footer { padding: 60px 5% 24px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-links { gap: 28px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }

  .btn { padding: 11px 22px; font-size: 0.88rem; }
  .hero-btns { flex-wrap: wrap; gap: 10px; }

  .section-header h2 { font-size: 1.7rem; }
  .section-header p { font-size: 0.93rem; }

  .feature-card { padding: 26px 20px; }
  .step { padding: 28px 20px; }

  .pricing-card { padding: 30px 22px; }
  .price-num { font-size: 2.4rem; }

  .cta-content h2 { font-size: 1.7rem; }

  .footer-links { flex-direction: column; gap: 24px; }
  .footer-col { gap: 10px; }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .navbar { padding: 12px 4%; }
  .nav-brand { font-size: 1.1rem; }
  section { padding: 60px 4%; }
  .hero-content h1 { font-size: 1.9rem; }
}

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.testimonials { background: var(--bg2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(0,255,140,0.35); transform: translateY(-6px); box-shadow: var(--glow); }

.testi-quote {
  position: absolute; top: 16px; right: 22px;
  font-size: 4rem; color: rgba(0,255,140,0.08);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}
.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), #00c9ff);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #000;
}
.testi-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testi-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ─── FAQ ──────────────────────────────────────────────── */
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}

.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(0,255,140,0.35); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 1rem; font-weight: 600; text-align: left;
  font-family: 'Inter', sans-serif; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q i { color: var(--green); font-size: 0.9rem; transition: transform 0.35s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
  padding: 0 28px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 22px; }

/* Testimonials & FAQ responsive */
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-q { padding: 18px 20px; font-size: 0.93rem; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; }
}
@media (max-width: 480px) {
  .testi-card { padding: 26px 20px; }
}

/* ─── PRIVACY POLICY PAGE ──────────────────────────────── */
.pp-hero {
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 6% 70px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(0,255,140,0.05) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
}
.pp-hero-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,255,140,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pp-hero-content { position: relative; z-index: 1; max-width: 700px; }
.pp-hero-content .badge { margin-bottom: 22px; }
.pp-hero-content h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.pp-hero-content > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 6px; }
.pp-hero-content strong { color: var(--text); }
.pp-intro {
  margin-top: 22px !important; color: var(--text-muted) !important;
  font-size: 1rem !important; line-height: 1.8;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.pp-body { padding: 70px 6% 100px; }
.pp-container {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px; align-items: start;
}
.pp-toc {
  position: sticky; top: 90px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
}
.pp-toc h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.pp-toc h3 i { color: var(--green); }
.pp-toc ol { padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-toc ol li { list-style: decimal; list-style-position: inside; font-size: 0.87rem; color: var(--text-muted); }
.pp-toc ol li a { color: var(--text-muted); transition: color 0.2s; }
.pp-toc ol li a:hover { color: var(--green); }
.pp-sections { display: flex; flex-direction: column; gap: 36px; }
.pp-section {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  display: flex; gap: 22px; align-items: flex-start;
  transition: border-color 0.3s; scroll-margin-top: 100px;
}
.pp-section:hover { border-color: rgba(0,255,140,0.28); }
.pp-section:target { border-color: rgba(0,255,140,0.45); box-shadow: 0 0 30px rgba(0,255,140,0.08); }
.pp-section-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(0,255,140,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--green); margin-top: 4px;
}
.pp-section-body { flex: 1; min-width: 0; }
.pp-section-body h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.pp-section-body h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin: 20px 0 10px; }
.pp-section-body p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.8; margin-bottom: 12px; }
.pp-section-body ul { padding-left: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.pp-section-body ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.pp-section-body ul li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: 8px; }
.pp-section-body strong { color: var(--text); font-weight: 600; }
.pp-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(0,255,140,0.06); border: 1px solid rgba(0,255,140,0.2);
  border-radius: 10px; padding: 14px 18px; margin-top: 16px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}
.pp-note i { color: var(--green); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.pp-note--warning { background: rgba(255,180,0,0.06); border-color: rgba(255,180,0,0.25); }
.pp-note--warning i { color: #fbbf24; }
.pp-table-wrap { overflow-x: auto; margin: 16px 0; border-radius: 10px; border: 1px solid var(--border); }
.pp-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.pp-table thead tr { background: rgba(0,255,140,0.07); }
.pp-table th { padding: 12px 16px; text-align: left; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); white-space: nowrap; }
.pp-table td { padding: 12px 16px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.04); }
.pp-table tbody tr:last-child td { border-bottom: none; }
.pp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.pp-rights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 18px 0; }
.pp-right-item { display: flex; align-items: flex-start; gap: 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.pp-right-item > i { color: var(--green); font-size: 1.1rem; background: rgba(0,255,140,0.1); border-radius: 8px; padding: 8px; flex-shrink: 0; }
.pp-right-item strong { display: block; color: var(--text); font-size: 0.9rem; margin-bottom: 4px; }
.pp-right-item p { color: var(--text-muted); font-size: 0.82rem; margin: 0; line-height: 1.5; }
.pp-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 20px 0; }
.pp-contact-card { display: flex; align-items: flex-start; gap: 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px; transition: border-color 0.3s; }
.pp-contact-card:hover { border-color: rgba(0,255,140,0.3); }
.pp-contact-card > i { color: var(--green); font-size: 1rem; background: rgba(0,255,140,0.1); border-radius: 8px; padding: 9px; flex-shrink: 0; }
.pp-contact-card strong { display: block; color: var(--text); font-size: 0.88rem; margin-bottom: 4px; }
.pp-contact-card span, .pp-contact-card a { color: var(--text-muted); font-size: 0.83rem; line-height: 1.5; display: block; }
.pp-link { color: var(--green); text-decoration: underline; text-underline-offset: 3px; transition: opacity 0.2s; }
.pp-link:hover { opacity: 0.8; }
@media (max-width: 900px) { .pp-container { grid-template-columns: 1fr; } .pp-toc { position: static; } }
@media (max-width: 700px) {
  .pp-hero { padding: 120px 5% 60px; }
  .pp-body { padding: 50px 5% 80px; }
  .pp-section { flex-direction: column; gap: 16px; padding: 26px 20px; }
  .pp-rights-grid { grid-template-columns: 1fr; }
  .pp-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pp-hero-content h1 { font-size: 2rem; }
  .pp-section-body h2 { font-size: 1.15rem; }
  .pp-table th, .pp-table td { padding: 10px 12px; font-size: 0.82rem; }
}
