/* ═══════════════════════════════════════════════════════════════════
   Service Safe Ltd — Legal Page Styles (Privacy / Terms)
   ═══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

:root {
  --c-bg:      #05060f;
  --c-bg-2:    #0a0d1c;
  --c-primary: #3B82F6;
  --c-lime:    #84ff5c;
  --c-teal:    #00f0c8;
  --c-gold:    #FFD700;
  --c-white:   #ffffff;
  --c-text:    rgba(255,255,255,0.78);
  --c-muted:   rgba(255,255,255,0.55);
  --c-faint:   rgba(255,255,255,0.12);
  --font:      'Space Grotesk', sans-serif;
}

html, body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  animation: lp-fade-in 0.4s ease both;
  position: relative;
  overflow-x: hidden;
}
body.lp-exiting { opacity: 0; transition: opacity 0.28s ease; pointer-events: none; }

@keyframes lp-fade-in { from { opacity: 0; } to { opacity: 1; } }

a { color: inherit; text-decoration: none; }

/* ── Ambient background glow (matches site theme) ── */
.lp-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 100%, rgba(0,240,200,0.10), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(132,255,92,0.04), transparent 70%);
}

/* ── Top bar ── */
.lp-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  background: rgba(5,6,15,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-faint);
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.lp-brand__name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
}
.lp-brand__slogan {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 2px;
}
.lp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text);
  padding: 10px 18px;
  border: 1px solid var(--c-faint);
  border-radius: 999px;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.03);
}
.lp-back:hover {
  color: var(--c-white);
  border-color: rgba(0,240,200,0.55);
  background: rgba(0,240,200,0.08);
  transform: translateX(-2px);
}
.lp-back svg { width: 16px; height: 16px; }

/* ── Main content ── */
.lp-main {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 40px 120px;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-teal);
  padding: 6px 14px;
  border: 1px solid rgba(0,240,200,0.35);
  border-radius: 999px;
  background: rgba(0,240,200,0.06);
  margin-bottom: 24px;
}

.lp-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.lp-title .accent {
  background: linear-gradient(120deg, #b9eaff 0%, #00f0c8 50%, #84ff5c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-meta {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.lp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-faint), transparent);
  margin: 0 0 48px;
}

/* ── Content blocks ── */
.lp-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-white);
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 18px;
}
.lp-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  bottom: 0.4em;
  width: 3px;
  background: linear-gradient(180deg, var(--c-teal), var(--c-primary));
  border-radius: 2px;
}
.lp-content h2:first-child { margin-top: 0; }

.lp-content p {
  margin-bottom: 18px;
  color: var(--c-text);
}

.lp-content ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.lp-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--c-text);
}
.lp-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-teal);
  box-shadow: 0 0 10px rgba(0,240,200,0.5);
}
.lp-content ul li strong {
  color: var(--c-white);
  font-weight: 600;
}

.lp-content a.lp-link {
  color: var(--c-teal);
  border-bottom: 1px solid rgba(0,240,200,0.4);
  transition: color 0.2s, border-color 0.2s;
}
.lp-content a.lp-link:hover {
  color: var(--c-white);
  border-color: var(--c-white);
}

/* ── Contact card ── */
.lp-contact-card {
  margin-top: 56px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(0,240,200,0.06), rgba(59,130,246,0.04));
  border: 1px solid rgba(0,240,200,0.18);
  border-radius: 16px;
}
.lp-contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 8px;
}
.lp-contact-card p {
  color: var(--c-text);
  margin-bottom: 16px;
}
.lp-contact-card a {
  color: var(--c-teal);
  font-weight: 600;
}
.lp-contact-card a:hover { color: var(--c-white); }

/* ── Footer ── */
.lp-footer {
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  border-top: 1px solid var(--c-faint);
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.lp-footer a {
  color: var(--c-text);
  margin: 0 12px;
  transition: color 0.2s;
}
.lp-footer a:hover { color: var(--c-white); }

/* ── Entrance animations ── */
.lp-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: lp-rise 0.7s ease forwards;
}
.lp-anim:nth-child(1) { animation-delay: 0.05s; }
.lp-anim:nth-child(2) { animation-delay: 0.15s; }
.lp-anim:nth-child(3) { animation-delay: 0.25s; }
.lp-anim:nth-child(4) { animation-delay: 0.35s; }
.lp-anim:nth-child(5) { animation-delay: 0.45s; }
@keyframes lp-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .lp-topbar { padding: 16px 20px; }
  .lp-brand__slogan { display: none; }
  .lp-main { padding: 48px 22px 80px; }
  .lp-content h2 { font-size: 1.25rem; margin-top: 36px; }
  .lp-contact-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-anim { animation: none; opacity: 1; transform: none; }
  body { animation: none; }
}
