/* ============================================================
   JAPAN TALENT MATCHING — DATA PROTECTION & SECURITY POLICY PAGE (AquaGlow v7)
============================================================= */

/* ─────────── ROOT TOKENS ─────────── */
:root {
  --accent: #2563eb;
  --accent-light: #dbeafe;
  --accent-dark: #1e40af;
  --ink: #0b1320;
  --muted: #6b7280;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(15,23,42,0.12);
}

/* ─────────── HERO SECTION ─────────── */
.hero-data-protection {
  position: relative;
  text-align: center;
  padding: 100px 20px 120px;
  background: #ffffff;
  overflow: hidden;
}

.hero-data-protection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(37,99,235,0.06) 0%,
    transparent 80%
  );
}

.hero-data-protection h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0f1c2e;
  letter-spacing: -0.02em;
}

.hero-data-protection p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ─────────── POLICY CONTENT ─────────── */
.data-protection-body {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 1.5rem;
  color: var(--ink);
  line-height: 1.8;
  font-size: 1.05rem;
}

.data-protection-body h3 {
  color: #1f2a3a;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

.data-protection-body p {
  margin-bottom: 1rem;
}

.data-protection-body ul {
  margin-left: 20px;
  list-style-type: disc;
}

.data-protection-body a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.data-protection-body a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ─────────── CTA SECTION ─────────── */
.cta-data-protection {
  position: relative;
  text-align: center;
  padding: 90px 20px 100px;
  background: #f7f9fc;
  border-top: 1px solid #e6ebf2;
  overflow: hidden;
}

.cta-data-protection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(37,99,235,0.06) 0%,
    transparent 75%
  );
}

.cta-data-protection h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f1c2e;
  margin-bottom: 0.75rem;
}

.cta-data-protection p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  margin: 0 auto 2rem;
  line-height: 1.7;
  max-width: 580px;
  font-size: 1rem;
}

.cta-data-protection .jt-cta-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #2563eb;
  color: #ffffff !important;
  font-weight: 600;
  padding: 14px 42px;
  border-radius: 40px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 22px rgba(37,99,235,0.25);
}

.cta-data-protection .jt-cta-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.35);
}

/* ─────────── RESPONSIVE FIXES ─────────── */
@media (max-width: 768px) {
  .hero-data-protection {
    padding: 80px 20px 100px;
  }

  .data-protection-body {
    margin: 60px auto;
    font-size: 1rem;
  }

  .cta-data-protection {
    padding: 70px 20px 80px;
  }
}
